aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpRegisterCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Models/Http/HttpRegisterCode.cs')
-rw-r--r--BackEnd/Timeline/Models/Http/HttpRegisterCode.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Models/Http/HttpRegisterCode.cs b/BackEnd/Timeline/Models/Http/HttpRegisterCode.cs
new file mode 100644
index 00000000..544f0d92
--- /dev/null
+++ b/BackEnd/Timeline/Models/Http/HttpRegisterCode.cs
@@ -0,0 +1,12 @@
+using System;
+namespace Timeline.Models.Http
+{
+ public class HttpRegisterCode
+ {
+ /// <summary>
+ /// Register code. May be null.
+ /// </summary>
+ public string? RegisterCode { get; set; }
+ }
+}
+