using System; using System.ComponentModel.DataAnnotations.Schema; namespace SharedLibraryCore.Database.Models { public class SharedEntity { /// /// indicates if the entity is active /// public bool Active { get; set; } = true; ///// ///// Specifies when the entity was created ///// //[Column(TypeName="datetime")] //public DateTime CreatedDateTime { get; set; } ///// ///// Specifies when the entity was updated ///// //[Column(TypeName = "datetime")] //public DateTime? UpdatedDateTime { get;set; } } }