Sign in
webkit
/
WebKit
/
55c462f894c77130084c8539f1536870519ed808
/
.
/
PerformanceTests
/
Speedometer
/
resources
/
todomvc
/
architecture-examples
/
angular
/
src
/
app
/
todo.ts
blob: a1d0a768b77984b9735937408e7bb6c68548777d [
file
] [
log
] [
blame
]
export
class
Todo
{
id
:
number
;
title
:
string
=
''
;
complete
:
boolean
=
false
;
constructor
(
values
:
Object
=
{})
{
Object
.
assign
(
this
,
values
);
}
}