PSTW_CentralizeSystem/Areas/Inventory/Models/CompanyModel.cs
2024-11-25 16:31:24 +08:00

12 lines
254 B
C#

using System.ComponentModel.DataAnnotations;
namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class CompanyModel
{
[Key]
public int CompanyId { get; set; }
public required string Name { get; set; }
}
}