18 lines
389 B
C#
18 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto.ContentModel
|
|
{
|
|
internal class FormContentModelDto
|
|
{
|
|
[JsonPropertyName("comment")]
|
|
public string? Comment { get; set; }
|
|
|
|
[JsonPropertyName("content")]
|
|
public string? Content { get; set; }
|
|
}
|
|
}
|