summaryrefslogtreecommitdiff
path: root/DAL/models
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-11-29 20:18:11 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-11-29 20:18:11 +0500
commite07dca81d05f304865a59c8afee98a3cde8bce8c (patch)
tree2dd01bbc5fd20b6ae024f0c18eb8946887ae9339 /DAL/models
Project init
Diffstat (limited to 'DAL/models')
-rw-r--r--DAL/models/Fighter.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/DAL/models/Fighter.go b/DAL/models/Fighter.go
new file mode 100644
index 0000000..a399609
--- /dev/null
+++ b/DAL/models/Fighter.go
@@ -0,0 +1,17 @@
+package models
+
+import "time"
+
+type Fighter struct {
+ Id uint64
+ FirstName string
+ LastName string
+ // can be null
+ MiddleName *string
+ BirthDate time.Time
+
+ BirthCardID uint64
+ LifeLayoutID uint64
+ SpiritualLayoutID uint64
+ InTheCircle bool
+}