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 PackageDirectoryMap { get; set; } } }