16 lines
369 B
C#
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; }
|
|
}
|
|
}
|