nitro-react/src/api/hc-center/ClubStatus.ts

7 lines
162 B
TypeScript
Raw Normal View History

2021-12-05 14:14:43 +01:00
export class ClubStatus
{
public static ACTIVE: string = 'active';
public static NONE: string = 'none';
public static EXPIRED: string = 'expired';
}