src/app/app-poll/app-poll-result.ts
Properties |
id |
id:
|
Type : number
|
options |
options:
|
Type : option[]
|
votesCount |
votesCount:
|
Type : number
|
export interface AppPollResult{
id: number,
votesCount: number,
options: option[]
}
export interface option{
id: number,
count: number
}