mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 01:05:23 +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
7 lines
250 B
C#
7 lines
250 B
C#
namespace Daybreak.Shared.Models.Mods;
|
|
public sealed class GuildWarsRunningContext
|
|
{
|
|
public required ApplicationLauncherContext ApplicationLauncherContext { get; init; }
|
|
public required IReadOnlyList<string> LoadedModules { get; init; }
|
|
}
|