nitro/apps/frontend/src/api/catalog/MarketplaceOfferState.ts

8 lines
201 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;
}