michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsIFeedElementBase.idl" michael@0: michael@0: interface nsIURI; michael@0: michael@0: /** michael@0: * An nsIFeedPerson represents an author or contributor of a feed. michael@0: */ michael@0: [scriptable, uuid(29cbd45f-f2d3-4b28-b557-3ab7a61ecde4)] michael@0: interface nsIFeedPerson : nsIFeedElementBase michael@0: { michael@0: /** michael@0: * The name of the person. michael@0: */ michael@0: attribute AString name; michael@0: michael@0: /** michael@0: * An email address associated with the person. michael@0: */ michael@0: attribute AString email; michael@0: michael@0: /** michael@0: * A URI associated with the person (e.g. a homepage). michael@0: */ michael@0: attribute nsIURI uri; michael@0: };