Untitled

 avatar
unknown
plain_text
a year ago
209 B
5
Indexable
using System;

namespace ToDoListApi.Models
{
    public class TodoItem
    {
        public long Id { get; set; }
        public string Name { get; set; }
        public bool IsComplete { get; set; }
    }
}
Editor is loading...