using System.Collections.Generic; namespace VideoAnalysisCore.Common.Dto { public class PageResult { /// /// 数据 /// public List Data { get; set; } /// /// 总条数 /// public int Total { get; set; } } }