common/Logic/Common.Logic.Extensions.Http/Interfaces/IHttpResponse[T].cs
2026-04-23 17:50:07 +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; }
}
}