2017-10-14 00:06:58 +02:00
|
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// About panel options.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-14 00:06:58 +02:00
|
|
|
|
public class AboutPanelOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The app's name.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ApplicationName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The app's version.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ApplicationVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Copyright information.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Copyright { get; set; }
|
|
|
|
|
|
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The app's build version number.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
2017-10-14 00:06:58 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Credit information.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Credits { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// List of app authors.
|
2017-10-14 00:06:58 +02:00
|
|
|
|
/// </summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
public string[] Authors { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The app's website.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Website { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Path to the app's icon. On Linux, will be shown as 64x64 pixels while retaining aspect ratio.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string IconPath { get; set; }
|
2017-10-14 00:06:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|