Make APIChangelogEntry.Major a non-nullable property

This commit is contained in:
Lucas A
2019-06-08 09:45:34 +02:00
parent 342e39776a
commit e8c73f3127
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ namespace osu.Game.Online.API.Requests.Responses
public string MessageHtml { get; set; }
[JsonProperty("major")]
public bool? Major { get; set; }
public bool Major { get; set; }
[JsonProperty("created_at")]
public DateTimeOffset? CreatedAt { get; set; }