12 lines
267 B
C#
12 lines
267 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class ImSwitchState
|
|||
|
{
|
|||
|
public int SwStateCode { get; set; }
|
|||
|
public string SwStateStr { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|