14 lines
358 B
C#
14 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|
{
|
|
public partial class ImDeviceDzenum2
|
|
{
|
|
public int EnumTypeId { get; set; }
|
|
public string EnumByte { get; set; } = null!;
|
|
public int EnumIndex { get; set; }
|
|
public string? EnumComment { get; set; }
|
|
}
|
|
}
|