| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IvfTl.Control.Entity.GlobalEntitys
- {
- public class DiskInfo
- {
- public string diskPath { get; set; }
- public decimal diskSpace { get; set; } = 0;
- public int diskExist { get; set; } = 0;
- }
- }
|