namespace Abp.Application.Services.Dto
{
///
/// A shortcut of for most used primary key type ().
///
public interface IEntityDto : IEntityDto
{
}
///
/// Defines common properties for entity based DTOs.
///
///
public interface IEntityDto
{
///
/// Id of the entity.
///
TPrimaryKey Id { get; set; }
}
}