mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-12 03:38:12 +00:00
19 lines
452 B
C#
19 lines
452 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with electron-updater 6.7.2</remarks>
|
|
public class ReleaseNoteInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the version.
|
|
/// </summary>
|
|
public string Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the note text.
|
|
/// </summary>
|
|
public string Note { get; set; }
|
|
}
|
|
} |