polygone/Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Models/Structures/IErrorInfo.cs
2021-08-02 05:44:37 -04:00

30 lines
593 B
C#

namespace Unity.Cloud.Collaborate.Models.Structures
{
internal interface IErrorInfo
{
int Code { get; }
ErrorInfoPriority Priority { get; }
ErrorInfoBehavior Behaviour { get; }
string Message { get; }
string ShortMessage { get; }
string CodeString { get; }
}
internal enum ErrorInfoPriority
{
Critical = 0,
Error,
Warning,
Info,
None
}
internal enum ErrorInfoBehavior
{
Alert = 0,
Automatic,
Hidden,
ConsoleOnly,
Reconnect
}
}