un essai ...
This commit is contained in:
26
ZicMoove/ZicMoove/Model/UI/AppEvent.cs
Normal file
26
ZicMoove/ZicMoove/Model/UI/AppEvent.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZicMoove.Model.UI
|
||||
{
|
||||
public enum EventSeverity
|
||||
{
|
||||
Info,
|
||||
Warning,
|
||||
Critical
|
||||
}
|
||||
/// <summary>
|
||||
/// Encapsule un événement concernant le fonctionnement
|
||||
/// de cette présente application.
|
||||
/// </summary>
|
||||
class AppEvent
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public string Message { get; set; }
|
||||
public string Component { get; set; }
|
||||
public EventSeverity Severity { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user