Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
147 B
6
Indexable
Never
using System;

public class Todo
{
    public int Id { get; set; }
    public string Title { get; set; }
    public bool IsComplete { get; set; }
}