PSTW_CentralizeSystem/Areas/OTcalculate/Models/StateModel.cs
2025-03-24 00:07:33 +08:00

13 lines
341 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PSTW_CentralSystem.Models;
namespace PSTW_CentralSystem.Areas.OTcalculate.Models
{
public class StateModel
{
[Key]
public int StateId { get; set; }
public required string StateName { get; set; }
}
}