Files
xPushService/Constants/XWebRTCAction.cs
T
2024-01-25 04:47:14 +03:30

32 lines
635 B
C#

using xExceptions.Attributes;
namespace xPushService.Constants {
public enum XWebRTCAction {
//
[StringValue ("RequestCall")]
RequestCall,
[StringValue ("RequestUserCall")]
RequestUserCall,
//
[StringValue ("CancelCall")]
CancelCall,
[StringValue ("RejectCall")]
RejectCall,
[StringValue ("AcceptCall")]
AcceptCall,
//
[StringValue ("WebRTCOffer")]
WebRTCOffer,
[StringValue ("WebRTCAnswer")]
WebRTCAnswer,
[StringValue ("WebRTCICECandidate")]
WebRTCICECandidate,
}
}