ningshuxia
2025-03-28 b6a00e2fddcf2343b981c30be670aa00b87699dc
1
2
3
4
5
6
7
8
9
10
namespace HydroUI
{
    [Serializable]
    public class AreaViewModel : NodeViewModel, IBaseViewModel
    {
        public List<NodeViewModel> InnerNodes = new List<NodeViewModel>();
        public Color color { get; set; }
    }
 
}