using System; using Abp.Domain.Entities.Auditing; namespace Abp.Application.Services.Dto { /// /// A shortcut of for most used primary key type (). /// [Serializable] public abstract class AuditedEntityDto : AuditedEntityDto { } /// /// This class can be inherited for simple Dto objects those are used for entities implement interface. /// /// Type of primary key [Serializable] public abstract class AuditedEntityDto : CreationAuditedEntityDto, IAudited { /// /// Last modification date of this entity. /// public DateTime? LastModificationTime { get; set; } /// /// Last modifier user of this entity. /// public long? LastModifierUserId { get; set; } } }