export const AuctionFormat = {
    Online: 'online',
    InPerson: 'in_person',
} as const;

export type AuctionFormat = (typeof AuctionFormat)[keyof typeof AuctionFormat];
