You've already forked Epicnabbo-Catalogus-Updated-Daily
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
export class MarketPlaceOfferState
|
|
{
|
|
public static readonly ONGOING = 1;
|
|
public static readonly ONGOING_OWN = 1;
|
|
public static readonly SOLD = 2;
|
|
public static readonly EXPIRED = 3;
|
|
}
|