123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace AGV_WPF.Models
- {
- public class CFDClass
- {
- public int mark { get; set; }
- public int agvID { get; set; }
- public int targetMark { get; set; }
- public List<Button> btns { get; set; }
- public int route { get; set; }
- public int number { get; set; }
- public int numberInner { get; set; }
- public List<int> agvList { get; set; }
- public bool IsRelease { get; set; }
- }
- }
|