|
@@ -9,29 +9,20 @@ using System.Threading.Tasks;
|
|
|
namespace Hotline.CallCenter.Tels.CallTelDomain;
|
|
|
public class QueryTelResponse
|
|
|
{
|
|
|
- [JsonPropertyName("uuid")]
|
|
|
public string Id { get; set; }
|
|
|
public string Name { get; set; }
|
|
|
- [JsonPropertyName("nbr")]
|
|
|
public string TelNo { get; set; }
|
|
|
public string Description { get; set; }
|
|
|
-
|
|
|
public string Password { get; set; }
|
|
|
-
|
|
|
- [JsonPropertyName("queue_id")]
|
|
|
public string QueueId { get; set; }
|
|
|
-
|
|
|
}
|
|
|
|
|
|
public class QueryTelStateResponse
|
|
|
{
|
|
|
- [JsonPropertyName("count")]
|
|
|
public string Count { get; set; }
|
|
|
|
|
|
- [JsonPropertyName("agents")]
|
|
|
public List<Agent>? AgentList { get; set; }
|
|
|
|
|
|
- [JsonPropertyName("agent")]
|
|
|
public List<Agent>? Agents { get; set; }
|
|
|
}
|
|
|
|