49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using xModels.Base;
|
|
using xModels.Dtos;
|
|
using xPushService.Constants;
|
|
|
|
namespace xPushService.Models {
|
|
/// <summary>
|
|
/// describe a WebRTC Call ...
|
|
/// </summary>
|
|
public class XWebRTCConnectionDto : XBaseStorableDto<string> {
|
|
public override string Id { get; set; }
|
|
/// <summary>
|
|
/// Call Type ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public XCallType Type { get; set; }
|
|
/// <summary>
|
|
/// call request Time ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public DateTime RequestTime { get; set; }
|
|
/// <summary>
|
|
/// Payload object ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public object Payload { get; set; }
|
|
/// <summary>
|
|
/// Caller User Name ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string CallerUser { get; set; }
|
|
/// <summary>
|
|
/// Caller Device ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public XDeviceDto CallerDevice { get; set; }
|
|
/// <summary>
|
|
/// Caller Connection Id ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string CallerConnectionId { get; set; }
|
|
/// <summary>
|
|
/// Callees Informations ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public IEnumerable<XWebRTCCalleeDto> Callees { get; set; }
|
|
}
|
|
} |