using System; using System.Collections.Generic; using JXCMS.CMS.Movie.Entity; namespace JXCMS.CMS.Movie.Models { public class MovieListInfoModel { public string RecordCount { get; set; } public string PageSize { get; set; } public string CurrentPage { get; set; } public string PageCount { get; set; } public List MovieInfoModels { get; set; } = new List(); } public class MovieInfoModel { public string Id { get; set; } public string TypeId { get; set; } public DateTime LastUpdateTime { get; set; } public string Name { get; set; } public string TypeName { get; set; } } }