poe2-bot/src/Nexus.Core/Buff.cs
2026-03-06 14:37:05 -05:00

9 lines
213 B
C#

namespace Nexus.Core;
public record Buff
{
public string? Name { get; init; }
public float DurationRemaining { get; init; }
public int Charges { get; init; }
public bool IsDebuff { get; init; }
}