You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
645 B
C#
27 lines
645 B
C#
using System;
|
|
|
|
namespace Unity.BossRoom.UnityServices
|
|
{
|
|
public struct UnityServiceErrorMessage
|
|
{
|
|
public enum Service
|
|
{
|
|
Authentication,
|
|
Lobby,
|
|
}
|
|
|
|
public string Title;
|
|
public string Message;
|
|
public Service AffectedService;
|
|
public Exception OriginalException;
|
|
|
|
public UnityServiceErrorMessage(string title, string message, Service service, Exception originalException = null)
|
|
{
|
|
Title = title;
|
|
Message = message;
|
|
AffectedService = service;
|
|
OriginalException = originalException;
|
|
}
|
|
}
|
|
}
|