laatzen/Common/Logic/Common.Logic.Extensions.Http/Interfaces/IHttpResponse[T].cs
2024-07-01 08:42:23 +02:00

16 lines
314 B
C#

namespace Common.Logic.Extensions.Http.Interfaces
{
using System;
using System.Collections.Generic;
public interface IHttpResponse<T>
{
Boolean Succeeded { get; }
T Value { get; }
Exception Exception { get; }
Dictionary<String, String> Errors { get; }
}
}