turkmentv_front/models/vote.model.ts

27 lines
470 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
export interface IVote {
data: Data;
}
export interface Data {
id: number;
title: string;
starts_at: string;
ends_at: string;
sms_number: string;
status: string;
description: string;
banner: string;
banner_mobile: string;
voting_items: VotingItem[];
}
export interface VotingItem {
id: number;
votes_count: number;
vote_code: string;
title: null | string;
2025-05-07 11:05:59 +00:00
description: null | string;
2024-08-19 12:44:56 +00:00
photo: null | string;
votes_percents: number;
}