1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4#[derive(Clone, Default, Debug, PartialEq)]
5pub struct TaskModel {
6 pub title: String,
7
8 // due date in milliseconds
9 pub due_date: i64,
10 pub done: bool,
11}
12