9 lines
230 B
C#
9 lines
230 B
C#
using System.Text.Json.Serialization;
|
|
|
|
public class TitleDataRetentionBonusInfo {
|
|
[JsonPropertyName("Rewards")]
|
|
public string[] Rewards { get; set; }
|
|
[JsonPropertyName("Active")]
|
|
public bool Active { get; set; }
|
|
}
|