mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 22:40:50 +01:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
|
export class ClubStatus
|
||
|
{
|
||
|
public static ACTIVE: string = 'active';
|
||
|
public static NONE: string = 'none';
|
||
|
public static EXPIRED: string = 'expired';
|
||
|
}
|