diff options
Diffstat (limited to '')
-rw-r--r-- | Api/Contract/NewContent.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Api/Contract/NewContent.cs b/Api/Contract/NewContent.cs new file mode 100644 index 0000000..67a0019 --- /dev/null +++ b/Api/Contract/NewContent.cs @@ -0,0 +1,7 @@ +namespace WikiWaka.Api.Contract; + +public class NewContent +{ + public required string Text { get; set; } + public required string LanguageCode { get; set; } +} |