mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 00:17:12 +00:00
12 lines
233 B
C#
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; }
|
|
}
|
|
}
|