Luski.Net/Luski.net/JsonTypes/KeyExchange.cs

11 lines
237 B
C#
Raw Normal View History

2023-01-01 22:50:39 -05:00
namespace Luski.net.JsonTypes
{
internal class KeyExchange
{
public long channel { get; set; } = default!;
public string key { get; set; } = default!;
public long? to { get; set; } = default!;
}
}