Files
databasus/frontend/src/entity/plan/model/DatabasePlan.ts
2026-01-23 12:00:56 +03:00

9 lines
205 B
TypeScript

import type { Period } from '../../databases/model/Period';
export interface DatabasePlan {
databaseId: string;
maxBackupSizeMb: number;
maxBackupsTotalSizeMb: number;
maxStoragePeriod: Period;
}