namespace VCommon.VApplication.Dto { public class PagedRequest : IPageRequest { public int Skip { get; set; } public int Take { get; set; } } }