namespace axXez.TS3.Protocol
{
/// Represents a single permission assignment with its value, negation flag, and skip flag.
public interface IPermissionEntry : INamedEntity
{
/// Numeric permission value.
int Value { get; }
/// Whether the permission is negated (reversed effect).
bool Negated { get; }
/// Whether the permission is skipped during channel permission inheritance.
bool Skip { get; }
}
}