Untitled
Anonymous
plain_text
10/16/2023 7:35 AM
196 B
22
Indexable
using System;
public class Todo
{
public int Id { get; set; }
public string Title { get; set; }
public bool IsComplete { get; set; }
}Editor is loading...
using System;
public class Todo
{
public int Id { get; set; }
public string Title { get; set; }
public bool IsComplete { get; set; }
}