9 lines
164 B
C#
9 lines
164 B
C#
namespace noteApi.Dtos.Note
|
|
{
|
|
public class CreateNoteDto
|
|
{
|
|
public string Title { get; set; }
|
|
public string Content { get; set; }
|
|
}
|
|
}
|