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