import type { Nullable } from '@/shared'; import type { SubscriptionFeatureDto } from './SubscriptionFeatureDto'; import type { SubscriptionPriceDto } from './SubscriptionPriceDto'; export class SubscriptionPlanDto { id: string; name: string; order: number; code?: string; isDefault: boolean; userLimit: Nullable; description: Nullable; prices: SubscriptionPriceDto[]; features: SubscriptionFeatureDto[]; defaultPriceId: Nullable = null; }