Files
2023-02-22 11:08:17 +00:00

8 lines
176 B
C#

namespace JWLMerge.BackupFileServices.Models;
internal sealed class NoteTitleAndContent
{
public string? Title { get; set; }
public string? Content { get; set; }
}