using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhonTai.Admin.Services.Notice.Dto
{
public class NoticeAddInput
{
///
/// 公告标题
///
public string Title { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 排序 越大越靠前
///
public int Rank { get; set; }
///
/// 是否弹窗 1弹窗 0不弹窗
///
public int IsAlter { get; set; } = 0;
///
/// 标签
///
public string Tags { get; set; }
}
}