13 lines
339 B
C#
13 lines
339 B
C#
namespace BookAStar.ViewModels.Validation
|
|
{
|
|
public class InputError
|
|
{
|
|
public InputError(string errorMessage, ErrorSeverity severity)
|
|
{
|
|
Text = errorMessage;
|
|
Severity = severity;
|
|
}
|
|
public string Text { get; set; }
|
|
public ErrorSeverity Severity { get; set; }
|
|
}
|
|
}
|