~ruther/NosTale-Gfless

ref: 5d9835cebb9b553700ebdf5080305412289f4331 NosTale-Gfless/NosTaleGfless/Pipes/ParamsMessage.cs -rw-r--r-- 280 bytes
5d9835ce — František Boháček fix: endless loop if process exits 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
using Newtonsoft.Json;

namespace NosTaleGfless.Pipes
{
    public class ParamsMessage : IdMessage
    {
        [JsonProperty("method")]
        public string Method { get; set; }
        
        [JsonProperty("params")]
        public SessionParams Params { get; set; }
    }
}