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

7 lines
183 B
C#

namespace Model.Entity.Parts;
public class EntityTierModel : IEntityPartInterface
{
public string Type { get; set; } = "EntityTierModel";
public float Tier { get; set; }
}