Files
NoteApp/noteApi/Models/Note.cs
2025-02-08 14:01:15 +01:00

11 lines
284 B
C#

namespace noteApi.Models
{
public class Note
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime CreatedOn { get; set; } = DateTime.Now;
}
}