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