mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-25 08:22:07 +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
11 lines
321 B
C#
11 lines
321 B
C#
using Daybreak.Shared.Models.Progress;
|
|
using System.Threading;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
public sealed class GuildWarsUpdateRequest
|
|
{
|
|
public string? ExecutablePath { get; init; }
|
|
public GuildwarsInstallationStatus? Status { get; init; }
|
|
public CancellationToken CancellationToken { get; init; }
|
|
}
|