Note Onion - 2 - Application - NoteTypeDto

Here is the source code for NoteTypeDto.cs file it is placed in the Dtos directory of the Note.Application project.

1
2
3
4
5
6
7
8
9
10
11
12
namespace Note.Application.DTOs
{
public class NoteTypeDto
{
public long Id { get; set; }
public string NoteType { get; set; }
public bool ShowOnNew { get; set; }
public string CompanyKey { get; set; }
public string ApplicationKey { get; set; }
}

}