Removed migrations. New onboarding screen and wizard like steps.

This commit is contained in:
Burak Kaan Köse
2026-03-06 03:42:08 +01:00
parent db5ecd60e4
commit aaa6e8a2c9
56 changed files with 1843 additions and 554 deletions
@@ -1,16 +1,7 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Wino.Core.Domain.Models.Updates;
public class UpdateNotes
{
[JsonPropertyName("hasPendingMigrations")]
public bool HasPendingMigrations { get; set; }
[JsonPropertyName("migration")]
public UpdateMigration Migration { get; set; } = new();
[JsonPropertyName("sections")]
public List<UpdateNoteSection> Sections { get; set; } = [];
}