20 lines
407 B
C#
20 lines
407 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace PSCHelpdesk.Plugins.Nextcloud.Models;
|
|
|
|
public class Note: ObservableObject
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
private string _content;
|
|
|
|
public string Content
|
|
{
|
|
get { return _content; }
|
|
set { SetProperty(ref _content, value); }
|
|
}
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string etag { get; set; }
|
|
} |