IHasLongTotalCount.cs 351 B

12345678910111213
  1. namespace Abp.Application.Services.Dto
  2. {
  3. /// <summary>
  4. /// This interface is defined to standardize to set "Total Count of Items" to a DTO for long type.
  5. /// </summary>
  6. public interface IHasLongTotalCount
  7. {
  8. /// <summary>
  9. /// Total count of Items.
  10. /// </summary>
  11. long TotalCount { get; set; }
  12. }
  13. }