LSFE/LSFE.MobApp/Models/SpecializationItem.cs
2026-07-30 10:31:04 +08:00

15 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Models
{
public class SpecializationItem
{
public byte Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}