9 lines
255 B
C#
9 lines
255 B
C#
namespace SimpleTodoApiWithPg.Models
|
|
{
|
|
public class Todo
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; } = string.Empty; // 待办事项标题
|
|
public bool IsCompleted { get; set; } // 是否已完成
|
|
}
|
|
} |