import { HalLink } from 'hal-types';
export interface ITag {
    id: number;
    name: string;
    _links: {
        self: HalLink;
    };
}
