model spec

This commit is contained in:
2025-05-09 12:42:42 +03:00
parent d8b40b6995
commit 99bc97b104
16 changed files with 500 additions and 0 deletions

19
specs/models/biz/user.v Normal file
View File

@@ -0,0 +1,19 @@
module biz
import base
import freeflowuniverse.herolib.data.ourtime
// User represents a user in the Freezone Manager system
pub struct User {
base.Base // Base struct for common fields
pub mut:
id u32
name string
email string
password string
company string // here its just a best effort
role string
created_at ourtime.OurTime
updated_at ourtime.OurTime
}