namespace ElectronNET.API.Entities { /// /// About panel options. /// public class AboutPanelOptions { /// /// The app's name. /// public string ApplicationName { get; set; } /// /// The app's version. /// public string ApplicationVersion { get; set; } /// /// Copyright information. /// public string Copyright { get; set; } /// /// The app's build version number. /// public string Version { get; set; } /// /// Credit information. /// public string Credits { get; set; } /// /// List of app authors. /// public string[] Authors { get; set; } /// /// The app's website. /// public string Website { get; set; } /// /// Path to the app's icon. On Linux, will be shown as 64x64 pixels while retaining aspect ratio. /// public string IconPath { get; set; } } }