2023-05-12 12:38:13 -04:00
|
|
|
namespace BinaryDad.Notes.Models;
|
|
|
|
|
|
|
|
public class ContentModel
|
|
|
|
{
|
2023-05-17 21:44:41 -04:00
|
|
|
public string CurrentNote { get; set; } = string.Empty;
|
2023-05-12 12:55:05 -04:00
|
|
|
public ICollection<string> NoteNames { get; set; } = new List<string>();
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2023-05-12 12:38:13 -04:00
|
|
|
}
|