Notes
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace ViewModel
8{
9public class NoteDTO
10{
11public string Title { get; set; }
12public string Text { get; set; }
13public int Id { get; set; }
14}
15}
16