cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 336 B
TypeScript
import { IPayioOption } from './i-option';
export interface IPayioOptionGroup {
active: boolean;
companyId: string;
containerId: string | null;
createdAt: Date;
id: string;
index: number;
max: number;
min: number;
name: string;
options: IPayioOption[];
tags: string[];
updatedAt: Date;
}