feat: create window client app
This commit is contained in:
21
Client/Infrastructure/Parsers/Objects/Message.cs
Normal file
21
Client/Infrastructure/Parsers/Objects/Message.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Client.Infrastructure.Parsers.Converters;
|
||||
|
||||
namespace Client.Infrastructure.Parsers.Objects
|
||||
{
|
||||
internal class Message
|
||||
{
|
||||
[JsonProperty]
|
||||
public string? Type { get; private set; }
|
||||
[JsonProperty]
|
||||
public string? Operation { get; private set; }
|
||||
[JsonProperty]
|
||||
[JsonConverter(typeof(RawConverter))]
|
||||
public string? Content { get; private set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user