using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MTWorkHR.Core.IDto { public interface IPagingResultDto where TEntity : class { int Total { get; set; } IList? Result { get; set; } } }