mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
14 lines
523 B
C#
14 lines
523 B
C#
using Daybreak.Shared.Models.Guildwars;
|
|
|
|
namespace Daybreak.Shared.Models.FocusView;
|
|
public sealed class TitleInformationComponentContext
|
|
{
|
|
public required Title Title { get; init; }
|
|
public required bool IsPercentage { get; init; }
|
|
public required uint CurrentPoints { get; init; }
|
|
public required uint PointsForCurrentRank { get; init; }
|
|
public required uint PointsForNextRank { get; init; }
|
|
public required uint TierNumber { get; init; }
|
|
public required uint MaxTierNumber { get; init; }
|
|
}
|