22 lines
455 B
C#
22 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsterNET.Manager.Event
|
|
{
|
|
public class ConfbridgeTalkingEvent : AbstractConfbridgeEvent
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TalkingStatus { get; set; }
|
|
|
|
public ConfbridgeTalkingEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
}
|