14 lines
323 B
C#
14 lines
323 B
C#
namespace LibraryApp.Domain;
|
|
|
|
public record Error
|
|
{
|
|
public string Message { get; init; }
|
|
|
|
public Error(string message)
|
|
{
|
|
Message = message;
|
|
}
|
|
|
|
public static implicit operator Error(string message) => new Error(message);
|
|
public static implicit operator string(Error error) => error.Message;
|
|
} |