https://github.com/li223/warframesharp
Basic wrapper for https://api.warframestat.us
https://github.com/li223/warframesharp
hacktoberfest warframe wrapper
Last synced: 3 months ago
JSON representation
Basic wrapper for https://api.warframestat.us
- Host: GitHub
- URL: https://github.com/li223/warframesharp
- Owner: li223
- License: mit
- Created: 2018-09-28T15:49:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T20:34:02.000Z (almost 3 years ago)
- Last Synced: 2025-01-18T01:11:51.857Z (5 months ago)
- Topics: hacktoberfest, warframe, wrapper
- Language: C#
- Homepage:
- Size: 168 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Basic wrapper for https://api.warframestat.us
I got bored, don't ask.
# Example
```cs
static async Task Main(string[] args)
{
//New instance of WarframeSharpClient
var client = new WarframeSharpClient();
//Get all the current alerts on PC
var data = await client.GetAlertsDataAsync(PlatformType.PC);
//Display the mission type and planet node
Console.WriteLine(string.Join("\n", data?.Select(x => $"Mission Type: {x.Mission.Type} || Node: {x.Mission.Node}")));
}
```