Simple to-do app for Windows 10/11. Made with UWP.
Taskie stores your lists as JSON files in the app's local folder. You can export them into a .taskie
file (that's just a renamed ZIP containing the JSON files) The JSON files are made with this simple syntax:
[
{
"CreationDate": "2023-08-04T18:41:17.7177428+02:00",
"Name": "Make dinner",
"IsDone": true
},
{
"CreationDate": "2023-08-04T18:41:25.3742071+02:00",
"Name": "Prepare for tomorrow's test",
"IsDone": false
}
]