Files
IGP-Fan-Reference/Model/Entity/Parts/EntityMechanicModel.cs
T

8 lines
242 B
C#

namespace Model.Entity.Parts;
public class EntityMechanicModel : IEntityPartInterface
{
public string Type { get; set; } = "EntityMechanicModel";
public string Name { get; set; } = "";
public string Description { get; set; }
}