roadie/Roadie.Api.Library/Utility/IHttpContext.cs

8 lines
164 B
C#
Raw Normal View History

2019-07-03 16:21:29 +00:00
namespace Roadie.Library.Utility
2018-11-06 21:55:31 +00:00
{
public interface IHttpContext
{
string BaseUrl { get; set; }
string ImageBaseUrl { get; set; }
}
2019-07-03 16:21:29 +00:00
}