16 lines
476 B
C#
16 lines
476 B
C#
![]() |
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!;
|
|||
|
}
|
|||
|
}
|