7 lines
104 B
C#
7 lines
104 B
C#
|
namespace Gos.Core.Entities
|
|||
|
{
|
|||
|
public interface IEntity
|
|||
|
{
|
|||
|
int Id { get; set; }
|
|||
|
}
|
|||
|
}
|