working with links

This commit is contained in:
2023-05-12 12:38:13 -04:00
parent 77e6ed78fd
commit 16f4dc9a76
15 changed files with 64 additions and 78 deletions

7
Models/ContentModel.cs Normal file
View File

@ -0,0 +1,7 @@
namespace BinaryDad.Notes.Models;
public class ContentModel
{
public ICollection<string> NoteNames { get; set; }
public string Text { get; set; }
}