Notes/Models/ContentModel.cs
2023-05-12 12:55:05 -04:00

7 lines
194 B
C#

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