Synchronize saves
This commit is contained in:
22
OpenSaveCloudClient/Models/Log.cs
Normal file
22
OpenSaveCloudClient/Models/Log.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OpenSaveCloudClient.Models
|
||||
{
|
||||
public enum LogSeverity
|
||||
{
|
||||
Error,
|
||||
Warning,
|
||||
Information
|
||||
}
|
||||
|
||||
public class Log
|
||||
{
|
||||
|
||||
public string Message { get; set; }
|
||||
public LogSeverity Severity { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user