mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
* Setup templates rework * Update docs * Implement backwards compatible parsing * Work * Finish build templates
12 lines
300 B
C#
12 lines
300 B
C#
namespace Daybreak.Shared.Models.Builds;
|
|
|
|
public interface IBuildEntry
|
|
{
|
|
DateTime CreationTime { get; set; }
|
|
string? SourceUrl { get; set; }
|
|
string? PreviousName { get; set; }
|
|
string? Name { get; set; }
|
|
int? ToolboxBuildId { get; set; }
|
|
bool IsToolboxBuild { get; set; }
|
|
}
|