mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 10:32:09 +08:00
16 lines
333 B
C#
16 lines
333 B
C#
namespace BuildingBlocks.Validation
|
|
{
|
|
public class ValidationError
|
|
{
|
|
public string Field { get; }
|
|
|
|
public string Message { get; }
|
|
|
|
public ValidationError(string field, string message)
|
|
{
|
|
Field = field != string.Empty ? field : null;
|
|
Message = message;
|
|
}
|
|
}
|
|
}
|