aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo/todo-item.ts
blob: b19d8335bf7d5177c3be0853d95bd30f0e68cdcd (plain)
1
2
3
4
5
6
export interface TodoItem {
  number: number;
  title: string;
  isClosed: boolean;
  detailUrl: string;
}