Commit 3172c624 by mhmdhaekal

feat(initialize): change user and base domain

1 parent 1c90b2ad
package domain
import "time"
type Base struct {
IsActive bool
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt time.Time
}
......@@ -2,9 +2,10 @@ package domain
type User struct {
ID int
Name string
IdentityNumber string
Email string
Name string
Base
}
type UserService interface {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!