JXMovies/CMS/JXCMS.CMS.Movie/Models/MovieListInfoModel.cs
2020-02-16 22:11:24 +08:00

33 lines
740 B
C#

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<MovieInfoModel> MovieInfoModels { get; set; } = new List<MovieInfoModel>();
}
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; }
}
}