type LotteryTicket = {
    id: number;
    order_id: number;
    ticket_no: string;
    pincode: string;
    serial_number: string;
    issue_no: string;
    issue_name: string;
    draw_date?: Date;
    expiry_date?: Date;
    mobile: string;
    email: string;
    qr: string;
    qr_type: number;
    usage_instructions: string;
};
export type { LotteryTicket };
