mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
13 lines
233 B
C#
13 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; }
|
|||
|
}
|
|||
|
}
|