2024-08-21 16:50:14 +08:00

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; }
}
}