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

7 lines
192 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;
}