mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Implement ChangelogEntryType
This commit is contained in:
@ -24,7 +24,7 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
public string Url { get; set; }
|
||||
|
||||
[JsonProperty("type")]
|
||||
public string Type { get; set; }
|
||||
public ChangelogEntryType Type { get; set; }
|
||||
|
||||
[JsonProperty("category")]
|
||||
public string Category { get; set; }
|
||||
@ -44,4 +44,10 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
[JsonProperty("github_user")]
|
||||
public APIChangelogUser GithubUser { get; set; }
|
||||
}
|
||||
|
||||
public enum ChangelogEntryType
|
||||
{
|
||||
Add,
|
||||
Fix
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user