8 lines
204 B
C#
8 lines
204 B
C#
namespace EveOPreview.Configuration {
|
|
/// <summary>
|
|
/// Application configuration
|
|
/// </summary>
|
|
public interface IAppConfig {
|
|
string ConfigFileName { get; set; }
|
|
}
|
|
} |