Notes/Models/ContentModel.cs
2023-05-17 21:44:41 -04:00

8 lines
254 B
C#

namespace BinaryDad.Notes.Models;
public class ContentModel
{
public string CurrentNote { get; set; } = string.Empty;
public ICollection<string> NoteNames { get; set; } = new List<string>();
public string Text { get; set; } = string.Empty;
}