Getters.cs 205 B

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