8 lines
254 B
C#
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;
|
|
} |