Files
Conversion-Test/blazor/Model/Entity/Parts/EntitySupplyModel.cs
T
2026-05-29 14:17:46 -04:00

8 lines
232 B
C#

namespace Model.Entity.Parts;
public class EntitySupplyModel : IEntityPartInterface
{
public string Type { get; set; } = "EntitySupplyModel";
public int Takes { get; set; } = 0;
public int Grants { get; set; } = 0;
}