import { AbstractModel } from "../../abstract-components/abstract.model"; export interface Admin extends AbstractModel { _id?: string; username: string; password: string; } export interface HttpSecret { link: string; secret: string; }