using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// /// [Serializable] public class OpenPaginatorDTOModel { public int page { get; set; } public int page_size { get; set; } public int total_count { get; set; } } }