16 lines
421 B
C#
16 lines
421 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class ImDeviceVa
|
|||
|
{
|
|||
|
public string Id { get; set; } = null!;
|
|||
|
public string Vaname { get; set; } = null!;
|
|||
|
public string? Unit { get; set; }
|
|||
|
public string? Expr { get; set; }
|
|||
|
|
|||
|
public virtual ImDeviceDatum IdNavigation { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|