24 lines
482 B
C#
24 lines
482 B
C#
|
|
using Autodesk.Revit.DB;
|
|||
|
|
|
|||
|
|
using Autodesk.Revit.DB.Architecture;
|
|||
|
|
|
|||
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvMEP
|
|||
|
|
{
|
|||
|
|
public partial class RoomCheckItem : ObservableObject
|
|||
|
|
{
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private bool isSelected;
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private string name;
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private Room room;
|
|||
|
|
[ObservableProperty]
|
|||
|
|
private Color color;
|
|||
|
|
}
|
|||
|
|
}
|