45 lines
909 B
C#
45 lines
909 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
|
|
public class NewsInfoResponse
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string CoverImg { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class NewsDetailInfoResponse
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Author { get; set; }
|
|
public string Title { get; set; }
|
|
public string CoverImg { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Summary { get; set; }
|
|
public string Detail { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Click { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
|
|
|
|
}
|