todo-d/source/model.d

6 lines
69 B
D

module model;
struct ToDoItem {
string text;
int priority;
}