export interface IPayioTab {
    active: boolean;
    createdAt: Date;
    id: string;
    name: string | null;
    updatedAt: Date;
    tags: string[];
}
