8 lines
232 B
C#
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;
|
|
} |