mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
10 lines
395 B
C#
10 lines
395 B
C#
namespace Daybreak.Shared.Models.FocusView;
|
|
public sealed class BuildComponentContext
|
|
{
|
|
public required bool IsInOutpost { get; init; }
|
|
public required uint PrimaryProfessionId { get; init; }
|
|
public required uint UnlockedProfessions { get; init; }
|
|
public required uint[] CharacterUnlockedSkills { get; init; }
|
|
public required uint[] AccountUnlockedSkills { get; init; }
|
|
}
|