SampleStandard.cs 324 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplet.Models
  6. {
  7. public class SampleStandard
  8. {
  9. public string code { get; set; }
  10. public string msg { get; set; }
  11. public Para data
  12. {
  13. get; set;
  14. }
  15. }
  16. }