File size: 252 Bytes
e26fba6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MovieTube.Web.Services
{
public interface IConfigProvider
{
string ImagePath { get; }
string RootUrl { get; }
}
} |