un essai ...
This commit is contained in:
parent
ffafc838d6
commit
22ae5f7a61
1 changed files with 26 additions and 0 deletions
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; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue