30 lines
536 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MonoTests.Common
{
class UnknownResponseHeader
{
private string name;
private string value;
public UnknownResponseHeader (string name, string value)
{
this.name = name;
this.value = value;
}
public string Name
{
get { return name; }
}
public string Value
{
get { return value; }
}
}
}