namespace Abp.Application.Services.Dto
{
///
/// This interface is defined to standardize to set "Total Count of Items" to a DTO for long type.
///
public interface IHasLongTotalCount
{
///
/// Total count of Items.
///
long TotalCount { get; set; }
}
}