You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
879 B
34 lines
879 B
//-----------------------------------------------------------------------
|
|
// <copyright file="CRequestMessage.cs" company="Origtek">
|
|
// CRequestMessage belongs to Copyright (c) Origtek. All rights reserved.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace OT.COM.SignalerMessage
|
|
{
|
|
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// It focus on return message.
|
|
/// </summary>
|
|
public class CRequestMessage : CMessageBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or sets IP
|
|
/// </summary>
|
|
public string clientip { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets Hostname
|
|
/// </summary>
|
|
public string cleinthostsname { get; set; }
|
|
|
|
public string token { get; set; }
|
|
|
|
|
|
public Dictionary<string, object> customparam { get; set; }
|
|
}
|
|
}
|