Files
Library/OwnChar/Api/Packets/OwnCharResponse.cs
Schedel Pascal b08c7619a4 uff, lot of work
2024-08-02 11:47:38 +02:00

12 lines
250 B
C#

using System.Text.Json.Serialization;
namespace OwnChar.Api.Packets;
public class OwnCharResponse
{
public OwnCharResponseError ErrorCode { get; set; }
[JsonIgnore]
public bool IsSuccess => ErrorCode != OwnCharResponseError.None;
}