mirror of
https://gitee.com/xiarenalofs/squad-rain-ops-mini.git
synced 2026-08-05 13:05:52 +08:00
33 lines
896 B
C#
33 lines
896 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RainOpsMini.Models
|
|
{
|
|
public class DisConnect
|
|
{
|
|
public string OutTime { get; set; }
|
|
public string JoinTime { get; set; }
|
|
public string ThreadID { get; set; }
|
|
public string ChIndex { get; set; }
|
|
public string ChIndexName { get; set; }
|
|
public string Closing { get; set; }
|
|
public string RemoteAddrIP { get; set; }
|
|
public string RemoteAddrPort { get; set; }
|
|
public string EOSIpNetConnectionID { get; set; }
|
|
public string DriverID { get; set; }
|
|
public string PC { get; set; }
|
|
public string Owner { get; set; }
|
|
public string EOSID { get; set; }
|
|
public string SteamID { get; set; }
|
|
public string SteamName { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|