19 lines
425 B
C#
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;
|
|
}
|
|
}
|