mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
721ee8e494
* 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
205 B
C#
9 lines
205 B
C#
namespace Daybreak.Shared.Models;
|
|
|
|
public sealed class SynchronizationBuild
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? TemplateCode { get; set; }
|
|
public bool Changed { get; set; }
|
|
}
|