Whats new implementation.

This commit is contained in:
Burak Kaan Köse
2026-03-02 00:44:29 +01:00
parent e816e87f61
commit d45d3faa89
21 changed files with 496 additions and 9 deletions
@@ -0,0 +1,13 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Wino.Core.Domain.Models.Updates;
public class UpdateNotes
{
[JsonPropertyName("hasMigrations")]
public bool HasMigrations { get; set; }
[JsonPropertyName("sections")]
public List<UpdateNoteSection> Sections { get; set; } = [];
}