2026-03-02 00:44:29 +01:00
|
|
|
using System.Collections.Generic;
|
2026-03-08 18:40:43 +01:00
|
|
|
using System.Text.Json.Serialization;
|
2026-03-02 00:44:29 +01:00
|
|
|
namespace Wino.Core.Domain.Models.Updates;
|
|
|
|
|
|
|
|
|
|
public class UpdateNotes
|
|
|
|
|
{
|
2026-03-08 18:40:43 +01:00
|
|
|
[JsonPropertyName("sections")]
|
2026-03-02 00:44:29 +01:00
|
|
|
public List<UpdateNoteSection> Sections { get; set; } = [];
|
|
|
|
|
}
|