mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-16 23:04:47 -05:00
10 lines
199 B
C#
10 lines
199 B
C#
namespace JWLMerge.BackupFileServices.Models
|
|
{
|
|
internal sealed class NoteTitleAndContent
|
|
{
|
|
public string? Title { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
}
|
|
}
|