mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
9 lines
206 B
C#
9 lines
206 B
C#
using Daybreak.Shared.Models.Builds;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
public sealed class DownloadedBuild
|
|
{
|
|
public string? PreferredName { get; set; }
|
|
public IBuildEntry? Build { get; set; }
|
|
}
|