17 lines
363 B
C#
17 lines
363 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Asterisk.NET.Manager.Event
|
|||
|
{
|
|||
|
public class ConfbridgeTalkingEvent : AbstractConfbridgeEvent
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public string TalkingStatus { get; set; }
|
|||
|
}
|
|||
|
}
|