BusyEvent.cs 366 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Serialization;
  7. using NewRock.Sdk.Control.Request.Base;
  8. namespace NewRock.Sdk.Events
  9. {
  10. [XmlRoot("Event")]
  11. public class BusyEvent: NewRockEvent
  12. {
  13. [XmlElement("ext")]
  14. public Ext Ext { get; set; }
  15. }
  16. }