| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum DeviceResourceType
- {
- [Description("CPU")]
- Cpu = 101,
- [Description("GPU")]
- Gpu = 201,
- [Description("采集卡")]
- Adc = 301
- }
- }
|