10 lines
244 B
C#
10 lines
244 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
namespace Wino.Core.Domain.Models.Updates;
|
|
|
|
public class UpdateNotes
|
|
{
|
|
[JsonPropertyName("sections")]
|
|
public List<UpdateNoteSection> Sections { get; set; } = [];
|
|
}
|