tangxu
2024-12-29 f7ec23b2fe6e8e48bbb32b8c9321b64529622406
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.WinFrmUI.Base.ViewModel
{
    public  class Layer
    {
        public int ID { get; set; }
        public bool IsVisible { get; set; } = true;
        public string Name { get; set; }
        public System.Drawing.Color Color { get; set; }
    }
}