RustDedicated/Rust.Platform.Common/IAuthTicket.cs
2025-05-25 05:29:54 +09:30

8 lines
108 B
C#

using System;
public interface IAuthTicket : IDisposable
{
string Token { get; }
byte[] Data { get; }
}