mirror of
https://github.com/nextcloud/server.git
synced 2026-02-23 18:05:02 -05:00
Provide standard metadata keys for location of room
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
parent
4b4292996f
commit
475984ef19
1 changed files with 21 additions and 0 deletions
|
|
@ -54,4 +54,25 @@ interface IRoomMetadata {
|
|||
* @since 17.0.0
|
||||
*/
|
||||
public const CAPACITY = '{http://nextcloud.com/ns}room-seating-capacity';
|
||||
|
||||
/**
|
||||
* The physical address of the building this room is located in
|
||||
*
|
||||
* @since 17.0.0
|
||||
*/
|
||||
public const BUILDING_ADDRESS = '{http://nextcloud.com/ns}room-building-address';
|
||||
|
||||
/**
|
||||
* The story of the building this rooms is located in
|
||||
*
|
||||
* @since 17.0.0
|
||||
*/
|
||||
public const BUILDING_STORY = '{http://nextcloud.com/ns}room-building-story';
|
||||
|
||||
/**
|
||||
* The room-number
|
||||
*
|
||||
* @since 17.0.0
|
||||
*/
|
||||
public const BUILDING_ROOM_NUMBER = '{http://nextcloud.com/ns}room-building-room-number';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue