turkmentv_front/models/vote.model.ts

26 lines
440 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;
photo: null | string;
votes_percents: number;
}