15 lines
398 B
C#
15 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|
{
|
|
public partial class ImEventParam
|
|
{
|
|
public string DeviceCtgy { get; set; } = null!;
|
|
public int ParamValue { get; set; }
|
|
public string ParamDesc { get; set; } = null!;
|
|
|
|
public virtual ImDevCtgy DeviceCtgyNavigation { get; set; } = null!;
|
|
}
|
|
}
|