Files
Wino-Mail/Wino.Core.Domain/Models/Updates/UpdateNotes.cs
T

8 lines
171 B
C#

using System.Collections.Generic;
namespace Wino.Core.Domain.Models.Updates;
public class UpdateNotes
{
public List<UpdateNoteSection> Sections { get; set; } = [];
}