using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Entities.Maintenance { [Table("InstitutionCategory")] public class InstitutionCategory { [Key] public int InstitutionCategoryId { get; set; } public string? InstitutionCategoryCode { get; set; } public string? InstitutionCategoryName { get; set; } public bool IsActive { get; set; } } }