//----------------------------------------------------------------------- // // CRequestMessage belongs to Copyright (c) Origtek. All rights reserved. // //----------------------------------------------------------------------- namespace OT.COM.SignalerMessage { using System.Collections.Generic; /// /// It focus on return message. /// public class CRequestMessage : CMessageBase { /// /// Gets or sets IP /// public string clientip { get; set; } /// /// Gets or sets Hostname /// public string cleinthostsname { get; set; } public string token { get; set; } public Dictionary customparam { get; set; } } }