Last active
May 17, 2017 11:33
-
-
Save dmitry-zaets/9bf2753158a31454bf6762cc1c9007c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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