mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
11 lines
277 B
C#
11 lines
277 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
|
|
[XmlRoot(ElementName = "getProductRulesResponse", Namespace = "")]
|
|
[Serializable]
|
|
public class GetProductRulesResponse {
|
|
[XmlElement(ElementName = "globalKey")]
|
|
public string GlobalSecretKey { get; set; }
|
|
} |