mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 16:41:36 -07:00
22 lines
416 B
C#
22 lines
416 B
C#
namespace Bloxstrap.AppData
|
|
{
|
|
internal interface IAppData
|
|
{
|
|
string ProductName { get; }
|
|
|
|
string BinaryType { get; }
|
|
|
|
string RegistryName { get; }
|
|
|
|
string ExecutableName { get; }
|
|
|
|
string Directory { get; }
|
|
|
|
string ExecutablePath { get; }
|
|
|
|
AppState State { get; }
|
|
|
|
IReadOnlyDictionary<string, string> PackageDirectoryMap { get; set; }
|
|
}
|
|
}
|