namespace ElectronNET.API.Entities { /// /// /// 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; } /// /// Credit information. /// public string Credits { get; set; } /// /// The app's build version number. /// public string Version { get; set; } } }