TestOptionConfig.cs 354 B

12345678910111213
  1. namespace DaJiaoYan.Models
  2. {
  3. public class TestOptionConfig
  4. {
  5. public int X { get; set; }
  6. public int Y { get; set; }
  7. public int Width { get; set; }
  8. public int Height { get; set; }
  9. public string Index { get; set; }
  10. public string Value { get; set; }
  11. public bool IsEdit { get; set; }
  12. }
  13. }