/dotnet/Api/SyncRegionUpdates.cs

http://sigma-h.googlecode.com/ · C# · 27 lines · 21 code · 6 blank · 0 comment · 0 complexity · e4af559c1789762592a158e185df7e04 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ActivityInfo.Api
  6. {
  7. public class SyncRegionUpdates
  8. {
  9. public string Version { get; set; }
  10. public bool Complete { get; set; }
  11. public List<SyncRegionUpdate> Sql { get; set; }
  12. }
  13. public class SyncRegionUpdate
  14. {
  15. public string Statement { get; set; }
  16. public List<ParameterSet> Executions { get; set; }
  17. }
  18. public class ParameterSet : List<String>
  19. {
  20. }
  21. }