15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
export type CurrencyDisplay = 'IRR' | 'TOMAN'
|
|
|
|
export interface PricingSettings {
|
|
id: string
|
|
usdToIrrRate: number
|
|
defaultCurrencyDisplay: CurrencyDisplay
|
|
createdAt: string
|
|
updatedAt: string
|
|
}
|
|
|
|
export interface UpdatePricingSettingsPayload {
|
|
usdToIrrRate: number
|
|
defaultCurrencyDisplay: CurrencyDisplay
|
|
}
|