- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CsuWebApiLib.Model
- {
- public class ButtonStatus
- {
- public int? Button1 { get; set; }
- public int? Button2 { get; set; }
- public int? Button3 { get; set; }
- public int? EmergencyButton { get; set; }
- }
- }
|