import {
  INamed,
} from './INamed';
import {
  ITaggable,
} from './ITaggable';

export interface IAsset extends
  INamed,
  ITaggable
{
}
