forked from powerfun/udpservice
34 lines
870 B
C#
34 lines
870 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace OnlineUserPool.Model
|
|||
|
|
{
|
|||
|
|
public class MsgModel
|
|||
|
|
{
|
|||
|
|
public int RouteId { get; set; }
|
|||
|
|
public int MemberId { get; set; }
|
|||
|
|
public double[] Point { get; set; }
|
|||
|
|
public bool IsCompleted { get; set; }
|
|||
|
|
|
|||
|
|
public bool exit = false;
|
|||
|
|
public double Speed { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 需要展示的属性
|
|||
|
|
/// </summary>
|
|||
|
|
public string Prop { get; set; }
|
|||
|
|
|
|||
|
|
public double EndDistance { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否展示在线的人
|
|||
|
|
/// </summary>
|
|||
|
|
public bool ShowVirtual { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 命令类型,0命令,1消息
|
|||
|
|
/// </summary>
|
|||
|
|
public byte CommandType { get; set; }
|
|||
|
|
|
|||
|
|
public bool IsVirtual { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|