6 lines
105 B
C#

namespace Suspectus.Gandalf.Data.Entities.Base;
public interface IEntity
{
long? Id { get; set; }
};