mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
21 lines
437 B
C#
21 lines
437 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UserGameCurrency", Namespace = "")]
|
|
[Serializable]
|
|
public class UserGameCurrency
|
|
{
|
|
[XmlElement(ElementName = "id")]
|
|
public int? UserGameCurrencyID;
|
|
|
|
[XmlElement(ElementName = "uid")]
|
|
public Guid? UserID;
|
|
|
|
[XmlElement(ElementName = "gc")]
|
|
public int? GameCurrency;
|
|
|
|
[XmlElement(ElementName = "cc")]
|
|
public int? CashCurrency;
|
|
}
|