import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models/Guid";
/**
 * Base interface for LinkType
 * @id need to implement
 * @description To use this, create a class that implements this interface, with constructor to initialize it with a static GUID value
 */
export interface LinkType {
    /**
     * GUID of interface
     */
    id: GuidValue;
}
