20 lines
416 B
C#
20 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static SteamWare.Logger.Constants;
|
|
|
|
namespace Iob.Model
|
|
{
|
|
public class ErrorMessageModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public ERROR_LEVEL ErrorLevel { get; set; }
|
|
public string Message { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |