turkmentv_front/models/lottery/lottery.model.ts

24 lines
413 B
TypeScript
Raw Normal View History

2024-12-23 19:13:36 +00:00
export interface ILotteryWinner {
no: number;
client: string;
dt: string;
winner_no: number;
ticket: string;
2024-12-09 13:35:43 +00:00
}
2024-12-23 19:13:36 +00:00
export interface ILotteryData {
2024-12-09 13:35:43 +00:00
id: number;
title: string;
description: string;
image: string;
start_time: string;
end_time: string;
sms_code: string;
2024-12-23 19:13:36 +00:00
winners: ILotteryWinner[];
2024-12-09 13:35:43 +00:00
}
2024-12-23 19:13:36 +00:00
export interface ILotteryResponse {
data: ILotteryData;
user_lottery_numbers: string[];
2024-12-09 13:35:43 +00:00
}