mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-19 12:08:12 +02:00
20 lines
383 B
C#
20 lines
383 B
C#
using DotBased.Monads;
|
|
|
|
namespace DotBased.AspNet.Authority.Monads;
|
|
|
|
public class ValidationResult<T> : DotBased.Monads.Result<T>
|
|
{
|
|
private ValidationResult(T result) : base(result)
|
|
{
|
|
}
|
|
|
|
private ValidationResult(Exception exception) : base(exception)
|
|
{
|
|
}
|
|
|
|
private ValidationResult(ResultInformation information) : base(information)
|
|
{
|
|
}
|
|
|
|
|
|
} |