first commit

This commit is contained in:
Артём
2024-07-06 07:54:22 +03:00
commit f986c82755
10 changed files with 349 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package models
import "time"
type Request struct {
ID int
Name string
Description string
Status string
CreationDate time.Time
LastUpdateDate time.Time
}