using System; namespace FCS.Models { //F_Video public class F_Video { /// /// 编码Int /// public int PK { get; set; } /// /// 编码Guid /// public string Id { get; set; } /// /// 内容(富文本) /// public string Contents { get; set; } /// /// 视频的类型(枚举) /// public string VideoType { get; set; } /// /// 创建时间 /// public DateTime CreateDateTime { get; set; } /// /// 赛事编码 /// public string EventId { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 标题图 /// public string TitleImg { get; set; } /// /// 备注 /// public string Remark { get; set; } } }