/**
 * A data contract that includes a unique identifier
 */
export interface HasId {
    /**
     * The unique identifier of the record
     */
    id: string;
}
