Did a few things
This commit is contained in:
28
Assets/UserReporting/Scripts/Client/UserReportEventLevel.cs
Normal file
28
Assets/UserReporting/Scripts/Client/UserReportEventLevel.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace Unity.Cloud.UserReporting
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a user report event level.
|
||||
/// </summary>
|
||||
public enum UserReportEventLevel
|
||||
{
|
||||
/// <summary>
|
||||
/// Info.
|
||||
/// </summary>
|
||||
Info = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Success.
|
||||
/// </summary>
|
||||
Success = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Warning.
|
||||
/// </summary>
|
||||
Warning = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Error.
|
||||
/// </summary>
|
||||
Error = 3
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user