using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class NewsClassCategoryResponse
{
public int Id { get; set; }
public int Sort { get; set; }
public string CategoryName { get; set; }
}
public class NewsInfoResponse
{
public int Id { get; set; }
public string Title { get; set; }
public string CoverImg { get; set; }
public string Source { get; set; }
public string Summary { get; set; }
public DateTime CreateTime { get; set; }
}
public class NewsDetailInfoResponse
{
public int Id { get; set; }
///
///
///
public string Author { get; set; }
public string Title { get; set; }
public string CoverImg { get; set; }
///
///
///
public string Summary { get; set; }
public string Detail { get; set; }
///
///
///
public int Click { get; set; }
public DateTime CreateTime { get; set; }
}
}