mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
24 lines
461 B
C#
24 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.AppData
|
|
{
|
|
internal interface IAppData
|
|
{
|
|
string ProductName { get; }
|
|
|
|
string BinaryType { get; }
|
|
|
|
string RegistryName { get; }
|
|
|
|
string ExecutableName { get; }
|
|
|
|
string StartEvent { get; }
|
|
|
|
IReadOnlyDictionary<string, string> PackageDirectoryMap { get; set; }
|
|
}
|
|
}
|