export interface DeleteBoardProperty {
  /** The id of the board from which the property will be removed. */
  boardId: string;
  /** The key of the property to remove. */
  propertyKey: string;
}
