New startup window.

This commit is contained in:
Burak Kaan Köse
2026-03-05 10:12:03 +01:00
parent d45d3faa89
commit db5ecd60e4
46 changed files with 1857 additions and 234 deletions
@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace Wino.Core.Domain.Models.Updates;
public class UpdateMigration
{
[JsonPropertyName("titleKey")]
public string TitleKey { get; set; } = string.Empty;
[JsonPropertyName("descriptionKey")]
public string DescriptionKey { get; set; } = string.Empty;
}
@@ -5,8 +5,11 @@ namespace Wino.Core.Domain.Models.Updates;
public class UpdateNotes
{
[JsonPropertyName("hasMigrations")]
public bool HasMigrations { get; set; }
[JsonPropertyName("hasPendingMigrations")]
public bool HasPendingMigrations { get; set; }
[JsonPropertyName("migration")]
public UpdateMigration Migration { get; set; } = new();
[JsonPropertyName("sections")]
public List<UpdateNoteSection> Sections { get; set; } = [];