Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

12 lines
402 B
C#

public record Error(string Code, string Name)
{
/// <summary>
/// Represents a common error for null values.
/// </summary>
public static Error NullValue = new("Error.NullValue", "Null value was provided");
/// <summary>
/// Represents a default error with an empty code and name.
/// </summary>
public static Error None => new(string.Empty, string.Empty);
}