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