NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Inventory/Discipline.cs
2026-06-15 16:41:50 +08:00

19 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Inventory
{
public class Discipline
{
[Key]
public byte DisciplineId { get; set; }
[Required, MaxLength(100)]
public string DisciplineName { get; set; } = string.Empty;
}
}