ChouBox/ChouBox.Model/Entities/Danye.cs
2025-04-23 19:20:23 +08:00

38 lines
755 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class Danye
{
/// <summary>
/// 类型1服务协议2隐私政策
/// </summary>
public uint Id { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 内容
/// </summary>
public string Content { get; set; } = null!;
/// <summary>
/// 修改时间
/// </summary>
public uint UpdateTime { get; set; }
/// <summary>
/// 0正常 1隐藏
/// </summary>
public byte Status { get; set; }
/// <summary>
/// 是否开启图片优化
/// </summary>
public sbyte IsImageOptimizer { get; set; }
}