- using System;
- using System.Collections.Generic;
- namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
- {
- public partial class ImPuctgyFltRptItem
- {
- public int PuctgyCode { get; set; }
- public string ItemName { get; set; } = null!;
- public string? ShowLabel { get; set; }
- public virtual ImFaultReportItem ItemNameNavigation { get; set; } = null!;
- public virtual ImPuCtgy PuctgyCodeNavigation { get; set; } = null!;
- }
- }
|