Files
Nitro-V3/src/api/inventory/IPrefixItem.ts
T
2026-04-21 11:13:32 +02:00

16 lines
290 B
TypeScript

export interface IPrefixItem
{
id: number;
displayName?: string;
text: string;
color: string;
icon: string;
effect: string;
font?: string;
active: boolean;
isCustom?: boolean;
points?: number;
pointsType?: number;
catalogPrefixId?: number;
}