| 1234567891011121314151617181920212223 |
- namespace Quadarax.Foundation.Core.Data
- {
- /// <summary>
- /// Represents structure of result state
- /// </summary>
- public interface IResult
- {
- /// <summary>
- /// Gets if result is logically success
- /// </summary>
- bool IsSuccess { get; }
- /// <summary>
- /// Collection of error items
- /// </summary>
- public IEnumerable<IError> Errors { get; }
- /// <summary>
- /// Returns result value
- /// </summary>
- /// <returns>Value</returns>
- public object? GetValue();
- }
- }
|