import { IImageModelAttributes } from "../../Base/entities/image.entity";
import { ISeatGroupModelAttributes } from "./seatGroup.entity";
import { IVenueModelAttributes } from "./venue.entity";
export interface ISeatModelAttributes {
    _id: string;
    type: string;
    venue: string | IVenueModelAttributes;
    files: IImageModelAttributes[];
    seatGroupDesigns: (string | ISeatGroupModelAttributes)[];
}
