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

30 lines
542 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class CardLevel
{
public uint Id { get; set; }
/// <summary>
/// 卡名称
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 等级图片
/// </summary>
public string? Imgurl { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Sort { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public int? Addtime { get; set; }
}