Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: cake <admin@cakeandbanana.nl> Reviewed-on: #88 Reviewed-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: defnotken <defnotken@noreply.git.lightless-sync.org> Co-committed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
12 lines
413 B
C#
12 lines
413 B
C#
namespace LightlessSync.UI.Models
|
|
{
|
|
public class ChangelogEntry
|
|
{
|
|
public string Name { get; init; } = string.Empty;
|
|
public string Date { get; init; } = string.Empty;
|
|
public string Tagline { get; init; } = string.Empty;
|
|
public bool? IsCurrent { get; init; }
|
|
public string? Message { get; init; }
|
|
public List<ChangelogVersion>? Versions { get; init; }
|
|
}
|
|
} |