blob: d9c96f440f70371349ea98457f7b48a41949b7fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Servers.HttpServer;
namespace OpenSim.Tests.Common.Mock
{
public class TestOSHttpResponse : OSHttpResponse
{
public override int StatusCode { get; set; }
public override string ContentType { get; set; }
}
}
|