1export interface Organization {
2  name: string;
3  id: number;
4}
5
6export interface OrganizationState {
7  organization: Organization;
8}
9