struct Task {
        uint id;
        string content;
        bool completed;
}
// creation
Task mytask = Task(1,"hi",false);