using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_NewsInfo : RootEntity
{
public int CategoryId { 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; }
}
}