diff options
| author | winter | 2024-12-08 18:04:37 +0000 |
|---|---|---|
| committer | winter | 2024-12-08 18:04:37 +0000 |
| commit | b00185ddbac9ac3de975a3954f2ede2f24458f6a (patch) | |
| tree | 265ccaae497e2788ed7de8f6b08a0d5a77ea16dc /WpfTest/Model/NoteAttachment.php | |
| parent | 13647d55bd8085a2b3a686b8aad3b28b0faf693a (diff) | |
implement notes
Diffstat (limited to 'WpfTest/Model/NoteAttachment.php')
| -rw-r--r-- | WpfTest/Model/NoteAttachment.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/WpfTest/Model/NoteAttachment.php b/WpfTest/Model/NoteAttachment.php new file mode 100644 index 0000000..b07d595 --- /dev/null +++ b/WpfTest/Model/NoteAttachment.php @@ -0,0 +1,11 @@ +<?php +namespace WpfTest\Model; + +use WpfTest\Model; + +class NoteAttachment extends Model { + public int $index; + public string $type; + public string $href; + public ?string $description; +}
\ No newline at end of file |
