/dotnet/Api/SyncRegionUpdates.cs
http://sigma-h.googlecode.com/ · C# · 27 lines · 21 code · 6 blank · 0 comment · 0 complexity · e4af559c1789762592a158e185df7e04 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace ActivityInfo.Api
- {
- public class SyncRegionUpdates
- {
- public string Version { get; set; }
- public bool Complete { get; set; }
- public List<SyncRegionUpdate> Sql { get; set; }
- }
-
- public class SyncRegionUpdate
- {
- public string Statement { get; set; }
- public List<ParameterSet> Executions { get; set; }
-
- }
-
- public class ParameterSet : List<String>
- {
-
-
- }
- }