use crate::PropertyName;
pub const DAV: &str = "DAV:";
pub const CALDAV: &str = "urn:ietf:params:xml:ns:caldav";
pub const CARDDAV: &str = "urn:ietf:params:xml:ns:carddav";
pub const APPLE: &str = "http://apple.com/ns/ical/";
pub const COLLECTION: PropertyName = PropertyName::from_static(DAV, "collection");
pub const DISPLAY_NAME: PropertyName = PropertyName::from_static(DAV, "displayname");
pub const GETCONTENTTYPE: PropertyName = PropertyName::from_static(DAV, "getcontenttype");
pub const GETETAG: PropertyName = PropertyName::from_static(DAV, "getetag");
pub const HREF: PropertyName = PropertyName::from_static(DAV, "href");
pub const RESOURCETYPE: PropertyName = PropertyName::from_static(DAV, "resourcetype");
pub const RESPONSE: PropertyName = PropertyName::from_static(DAV, "response");
pub const STATUS: PropertyName = PropertyName::from_static(DAV, "status");
pub const PROPSTAT: PropertyName = PropertyName::from_static(DAV, "propstat");
pub const SUPPORTED_REPORT_SET: PropertyName =
PropertyName::from_static(DAV, "supported-report-set");
pub const SYNC_COLLECTION: PropertyName = PropertyName::from_static(DAV, "sync-collection");
pub const CURRENT_USER_PRINCIPAL: PropertyName =
PropertyName::from_static(DAV, "current-user-principal");
pub const CALENDAR: PropertyName = PropertyName::from_static(CALDAV, "calendar");
pub const CALENDAR_DESCRIPTION: PropertyName =
PropertyName::from_static(CALDAV, "calendar-description");
pub const CALENDAR_HOME_SET: PropertyName = PropertyName::from_static(CALDAV, "calendar-home-set");
pub const CALENDAR_COLOUR: PropertyName =
PropertyName::from_static("http://apple.com/ns/ical/", "calendar-color");
pub const CALENDAR_DATA: PropertyName = PropertyName::from_static(CALDAV, "calendar-data");
pub const CALENDAR_ORDER: PropertyName = PropertyName::from_static(APPLE, "calendar-order");
pub const ADDRESSBOOK: PropertyName = PropertyName::from_static(CARDDAV, "addressbook");
pub const ADDRESSBOOK_DESCRIPTION: PropertyName =
PropertyName::from_static(CARDDAV, "addressbook-description");
pub const ADDRESSBOOK_HOME_SET: PropertyName =
PropertyName::from_static("urn:ietf:params:xml:ns:carddav", "addressbook-home-set");
pub const ADDRESS_DATA: PropertyName = PropertyName::from_static(CARDDAV, "address-data");