un essai ...

This commit is contained in:
2017-02-22 14:42:23 +01:00
parent 1d3554528a
commit b1973cae5f

View 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; }
}
}