2025-07-08 14:01:10 +08:00

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