mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-10 15:43:18 +01:00
cef860db1b
- Added functionality to release notes app to generate full changelog.yml from GitHub metadata. (Incremental) - Updated PULL_REQUEST_TEMPLATE.md to reflect changes (Strict component list)
10 lines
195 B
C#
10 lines
195 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Tgstation.Server.ReleaseNotes
|
|
{
|
|
sealed class ReleaseNotes
|
|
{
|
|
public SortedDictionary<Component, List<Changelist>> Components { get; set; }
|
|
}
|
|
}
|