7 lines
131 B
C#
7 lines
131 B
C#
namespace Domains;
|
|
|
|
/// Interface that every entity should inherit from
|
|
public interface IEntity
|
|
{
|
|
public Guid Id { get; }
|
|
} |