1<?php
2
3namespace Sabre\CardDAV;
4
5use Sabre\DAV;
6
7/**
8 * Card interface
9 *
10 * Extend the ICard interface to allow your custom nodes to be picked up as
11 * 'Cards'.
12 *
13 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
14 * @author Evert Pot (http://evertpot.com/)
15 * @license http://sabre.io/license/ Modified BSD License
16 */
17interface ICard extends DAV\IFile {
18
19}
20