common/SoftwareAccessHelper/HttpResponse[T].cs
2026-04-23 17:50:07 +02:00

16 lines
369 B
C#

namespace Xylem.Common.Logic.SoftwareAccessHelper
{
using System;
using System.Collections.Generic;
using System.Net;
public class HttpResponse<T>
{
public T Value { get; internal set; }
public HttpStatusCode HttpStatusCode { get; internal set; }
public Dictionary<String, String> Errors { get; internal set; }
}
}