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

14 lines
238 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class AdvertType
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public int? Sort { get; set; }
}