16 lines
449 B
C#
16 lines
449 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class ImFaultParam
|
|||
|
{
|
|||
|
public int ParamCode { get; set; }
|
|||
|
public string ParamName { get; set; } = null!;
|
|||
|
public string? ParamSym1 { get; set; }
|
|||
|
public double ParamCof1 { get; set; }
|
|||
|
public string? ParamSym2 { get; set; }
|
|||
|
public double ParamCof2 { get; set; }
|
|||
|
}
|
|||
|
}
|