using VCommon.VApplication.DataAnnotations; namespace VCommon.VApplication.Dto { public interface IPageRequest { int Skip { get; set; } [ExampleValue(10)] int Take { get; set; } } }