CloudGamingAdmin/admin-server/CloudGaming.Api.Admin/Models/Dtos/DevelopmentTool/GenContextDto.cs
2024-11-15 02:58:48 +08:00

14 lines
267 B
C#

namespace CloudGaming.Api.Admin.Models.Dtos.DevelopmentTool;
/// <summary>
/// 生成代码上下文
/// </summary>
public class GenContextDto : DbTableInfo
{
/// <summary>
/// 命名空间
/// </summary>
public string? Namespace { get; set; }
}