mirror of
https://gitea.tendokyu.moe/Kayori/MedusaPluginChargeMachine.git
synced 2026-09-27 09:37:58 +03:00
24 lines
582 B
C#
24 lines
582 B
C#
using System.Xml.Serialization;
|
|
using Abstractions.SerializationTypes;
|
|
|
|
namespace MedusaPluginChargeMachine.Models.Response;
|
|
|
|
[XmlRoot("eacharge")]
|
|
[Serializable]
|
|
public class ChargeResponse
|
|
{
|
|
[XmlAttribute("status")]
|
|
public required int Status { get; set; }
|
|
|
|
[XmlElement("balance")]
|
|
public XrpcInt Balance { get; set; }
|
|
|
|
[XmlElement("chargedailylimit")]
|
|
public XrpcInt ChargeDailyLimit { get; set; }
|
|
|
|
[XmlElement("chargedaily")]
|
|
public XrpcInt ChargeDaily { get; set; }
|
|
|
|
[XmlElement("chargepoint")]
|
|
public XrpcInt ChargePoint { get; set; }
|
|
} |