using System;
using System.Collections.Generic;
namespace StopShopping.EF.Models;
///
/// 系统通知
///
public partial class Notice
{
///
/// 主键
///
public int Id { get; set; }
///
/// 内容
///
public string Content { get; set; } = null!;
///
/// 是否已审核
///
public bool Verified { get; set; }
///
/// 发布时间
///
public DateTime PublishTime { get; set; }
}