mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-03-19 02:23:28 +00:00
- 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; }
|
|
}
|
|
}
|