mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import type { Period } from '../../databases/model/Period';
|
|
|
|
export interface DatabasePlan {
|
|
databaseId: string;
|
|
maxBackupSizeMb: number;
|
|
maxBackupsTotalSizeMb: number;
|
|
maxStoragePeriod: Period;
|
|
}
|