8 lines
171 B
C#
8 lines
171 B
C#
using System.Collections.Generic;
|
|
namespace Wino.Core.Domain.Models.Updates;
|
|
|
|
public class UpdateNotes
|
|
{
|
|
public List<UpdateNoteSection> Sections { get; set; } = [];
|
|
}
|