Initial Commit ...
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user