export interface GetBoardProperty {
  /** The ID of the board from which the property will be returned. */
  boardId: string;
  /** The key of the property to return. */
  propertyKey: string;
}
