/**
 * Represents a named object.
 */
export interface INamedObject {
    /**
     * Gets or sets the name of the object.
     */
    Name: string;
}
