mirror of
https://gitea.tendokyu.moe/Kayori/MedusaPluginChargeMachine.git
synced 2026-09-22 22:27:54 +03:00
11 lines
231 B
C#
11 lines
231 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MedusaPluginChargeMachine.Models.Response;
|
|
|
|
[XmlRoot("eacharge")]
|
|
[Serializable]
|
|
public class CheckoutResponse
|
|
{
|
|
[XmlAttribute("status")]
|
|
public required int Status { get; set; }
|
|
} |