mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
10 lines
297 B
C#
10 lines
297 B
C#
using Daybreak.Shared.Models.Progress;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
public sealed class GuildWarsUpdateRequest
|
|
{
|
|
public string? ExecutablePath { get; init; }
|
|
public GuildwarsInstallationStatus? Status { get; init; }
|
|
public CancellationToken CancellationToken { get; init; }
|
|
}
|