6 lines
69 B
D
6 lines
69 B
D
|
module model;
|
||
|
|
||
|
struct ToDoItem {
|
||
|
string text;
|
||
|
int priority;
|
||
|
}
|