Initial Commit ...

This commit is contained in:
2024-01-25 04:47:14 +03:30
commit d862146642
37 changed files with 4039 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
using System;
using xModels.Base;
using xModels.Dtos;
using xPushService.Constants;
namespace xPushService.Models {
public class XWebRTCCalleeDto : XBaseDto {
/// <summary>
/// Callee User Name ...
/// </summary>
/// <value></value>
public string User { get; set; }
/// <summary>
/// Callee Device ...
/// </summary>
/// <value></value>
public XDeviceDto Device { get; set; }
/// <summary>
/// Calee Connection Id ...
/// </summary>
/// <value></value>
public string ConnectionId { get; set; }
/// <summary>
/// call end time ...
/// </summary>
/// <value></value>
public DateTime EndTime { get; set; }
/// <summary>
/// call end reason ...
/// </summary>
/// <value></value>
public XCallEndReason EndReason { get; set; }
}
}