diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-10-30 20:59:53 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-10-30 20:59:53 +0000 |
commit | dc1938dbb98dc9edf16558e505b2961246c83e6e (patch) | |
tree | 7953186976085ceca6c03a208d1ffd9596f745be /Api/Contract/WikiProperty.cs | |
parent | fc3c7e3b3c955cc274d4668768466fecb8fb727b (diff) | |
download | wikiwaka-master.tar wikiwaka-master.tar.gz wikiwaka-master.tar.bz2 wikiwaka-master.tar.lz wikiwaka-master.tar.xz wikiwaka-master.tar.zst wikiwaka-master.zip |
Diffstat (limited to '')
-rw-r--r-- | Api/Contract/WikiProperty.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Api/Contract/WikiProperty.cs b/Api/Contract/WikiProperty.cs new file mode 100644 index 0000000..7f00812 --- /dev/null +++ b/Api/Contract/WikiProperty.cs @@ -0,0 +1,8 @@ +namespace WikiWaka.Api.Contract; + +public class WikiProperty +{ + public required int Id { get; init; } + public required string Text { get; set; } + public required string LanguageCode { get; set; } +} |