Skip to content

Instantly share code, notes, and snippets.

@dmitry-zaets
Last active May 17, 2017 11:33
Show Gist options
  • Save dmitry-zaets/9bf2753158a31454bf6762cc1c9007c3 to your computer and use it in GitHub Desktop.
Save dmitry-zaets/9bf2753158a31454bf6762cc1c9007c3 to your computer and use it in GitHub Desktop.
public class ApiOptions
{
public string Name { get; set; }
public List<ApiEndpoint> Endpoints { get; set; }
}
public class ApiEndpoint
{
public string Url { get; set; }
public bool RetryOnFailure { get; set; }
public List<ApiEvent> AvailableEvents { get; set; }
}
public class ApiEvent
{
public string Name { get; set; }
public string Category { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment