/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT-0 */ using System; namespace todo_app.Controllers { public class ToDo{ public int Id { get; set; } public DateTime CreatedTime {get;set;} public string Status {get;set;} public string Task {get;set;} } }