export enum UNSnapshotProtectionStrategy {
  FullProtection = 'fullProtection',
  None = 'none'
}

export interface UNSecuritySettings {
  snapshotProtectionStrategy: UNSnapshotProtectionStrategy
}
