Files
Moonlight/Moonlight.Api/Models/MoonlightVersion.cs

12 lines
295 B
C#

namespace Moonlight.Api.Models;
// Notes:
// Identifier - This needs to be the branch to clone to build this version if
// you want to use the container helper
public record MoonlightVersion(
string Identifier,
bool IsPreRelease,
bool IsDevelopment,
DateTimeOffset CreatedAt
);