roadie/RoadieLibrary/Utility/IHttpContext.cs
Steven Hildreth 71d57b6925 WIP
2018-11-06 15:55:31 -06:00

12 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Roadie.Library.Utility
{
public interface IHttpContext
{
string BaseUrl { get; set; }
string ImageBaseUrl { get; set; }
}
}