forked from aly/qstbak
5 lines
189 B
C#
5 lines
189 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Questionable.Model.Changelog;
|
|
|
|
internal sealed record ChangeEntry(EChangeCategory Category, string Description, List<string>? SubItems = null);
|