8 lines
149 B
C#
8 lines
149 B
C#
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IEntity
|
|
{
|
|
int ID { get; set; }
|
|
bool Torolt { get; set; }
|
|
}
|
|
}
|