8 lines
181 B
C#
8 lines
181 B
C#
namespace FileTime.App.Core.Models;
|
|
|
|
public interface IApplicationSettings
|
|
{
|
|
string AppDataRoot { get; }
|
|
string EnvironmentName { get; }
|
|
string DataFolderName { get; }
|
|
} |