2020-12-28 18:56:26 +01:00
|
|
|
|
namespace Hermes {
|
2020-12-28 00:24:12 +01:00
|
|
|
|
class OVHQueryBody {
|
|
|
|
|
public string charset {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string[] receivers {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string message {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string priority {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public bool senderForResponse {
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|