control_silo_organization.tsx 263 B

12345678910
  1. /**
  2. * Control Silo Organizations are sent back from primarily control silo endpoints that do not have rights to access
  3. * detailed regional organization information.
  4. */
  5. export interface ControlSiloOrganization {
  6. id: string;
  7. name: string;
  8. slug: string;
  9. }