16 lines
368 B
C#
16 lines
368 B
C#
|
|
|
|||
|
|
namespace Szmedi.RvKits.Modeling
|
|||
|
|
{
|
|||
|
|
public partial class RelatedProp : ObservableObject
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private string layerName;
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private bool isChecked = false;
|
|||
|
|
public string PropertyType { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|