Notes/Models/ContentModel.cs

8 lines
254 B
C#
Raw Normal View History

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