mirror of
https://github.com/smyalygames/monopoly.git
synced 2025-05-17 22:04:11 +02:00
25 lines
398 B
C#
25 lines
398 B
C#
using System;
|
|
|
|
namespace Mirror.Cloud
|
|
{
|
|
[Serializable]
|
|
public struct CreatedIdJson : ICanBeJson
|
|
{
|
|
public string id;
|
|
}
|
|
|
|
[Serializable]
|
|
public struct ErrorJson : ICanBeJson
|
|
{
|
|
public string code;
|
|
public string message;
|
|
|
|
public int HtmlCode => int.Parse(code);
|
|
}
|
|
|
|
[Serializable]
|
|
public struct EmptyJson : ICanBeJson
|
|
{
|
|
}
|
|
}
|