2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-15 21:44:59 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-15 21:44:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Users
|
|
|
|
|
{
|
|
|
|
|
public class Badge
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("awarded_at")]
|
|
|
|
|
public DateTimeOffset AwardedAt;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("description")]
|
|
|
|
|
public string Description;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("image_url")]
|
|
|
|
|
public string ImageUrl;
|
2022-11-03 05:30:30 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("url")]
|
|
|
|
|
public string Url;
|
2018-04-15 21:44:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|