You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
859 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. public class UniversalEditModel
  9. {
  10. public string ProjectCode { get; set; }
  11. public string BatchCode { get; set; }
  12. public string Version { get; set; }
  13. public string User { get; set; }
  14. public string Brand { get; set; }
  15. public string cFree1 { get; set; }
  16. public string cFree2 { get; set; }
  17. public string cFree3 { get; set; }
  18. public string cFree4 { get; set; }
  19. public string cFree5 { get; set; }
  20. public string cFree6 { get; set; }
  21. public string cFree7 { get; set; }
  22. public string cFree8 { get; set; }
  23. public string cFree9 { get; set; }
  24. public string cFree10 { get; set; }
  25. }
  26. }