2025-07-08 14:01:10 +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; }
}
}