17 lines
481 B
C#
17 lines
481 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class Im3posSwitch
|
|||
|
{
|
|||
|
public string Id { get; set; } = null!;
|
|||
|
public string? GndyxdataId { get; set; }
|
|||
|
public string? GndyxdataName { get; set; }
|
|||
|
public string? GndykdataId { get; set; }
|
|||
|
public string? GndykdataName { get; set; }
|
|||
|
|
|||
|
public virtual ImGlyph IdNavigation { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|