Getters.cs 219 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace FastJSON
  4. {
  5. public sealed class DatasetSchema
  6. {
  7. public List<string> Info ;//{ get; set; }
  8. public string Name ;//{ get; set; }
  9. }
  10. }