11 lines
284 B
C#
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;
|
|
}
|
|
}
|