Untitled
unknown
plain_text
2 years ago
209 B
11
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...