Files
L2Bot2.0/Client/Infrastructure/Parsers/Objects/OutgoingMessage.cs
2023-02-09 22:45:08 +04:00

18 lines
433 B
C#

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; } = "";
}
}