un essai ...

main
Paul Schneider 9 years ago
parent 1d3554528a
commit b1973cae5f
1 changed files with 26 additions and 0 deletions

@ -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…