mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-07-14 03:01:36 -04:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace JWLMerge.BackupFileServices.Models;
|
|
|
|
internal sealed class NoteTitleAndContent
|
|
{
|
|
public string? Title { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
} |