8 lines
240 B
C#
8 lines
240 B
C#
namespace Model.Entity.Parts;
|
|
|
|
public class EntityPassiveModel : IEntityPartInterface
|
|
{
|
|
public string Type { get; set; } = "EntityPassiveModel";
|
|
public string Name { get; set; } = "";
|
|
public string Description { get; set; }
|
|
} |