feat: add outgoing messages to client
This commit is contained in:
17
Client/Infrastructure/Parsers/Objects/OutgoingMessage.cs
Normal file
17
Client/Infrastructure/Parsers/Objects/OutgoingMessage.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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 OutgoingMessage
|
||||
{
|
||||
public string Type { get; set; } = "";
|
||||
[JsonConverter(typeof(RawConverter))]
|
||||
public string Content { get; set; } = "";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user