using System;
using System.Text.Json.Serialization;
namespace Prospect.Server.Api.Models.Client.Data
{
public class FVirtualCurrencyRechargeTime
{
///
/// Maximum value to which the regenerating currency will automatically increment. Note that it can exceed this value
/// through use of the AddUserVirtualCurrency API call. However, it will not regenerate automatically until it has fallen
/// below this value.
///
[JsonPropertyName("RechargeMax")]
public int RechargeMax { get; set; }
///
/// Server timestamp in UTC indicating the next time the virtual currency will be incremented.
///
[JsonPropertyName("RechargeTime")]
public DateTime RechargeTime { get; set; }
///
/// Time remaining (in seconds) before the next recharge increment of the virtual currency.
///
[JsonPropertyName("SecondsToRecharge")]
public int SecondsToRecharge { get; set; }
}
}