20 lines
388 B
C#
20 lines
388 B
C#
namespace Hermes {
|
|
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;
|
|
}
|
|
}
|
|
}
|