cup/models/user.go

20 lines
425 B
Go
Raw Normal View History

2024-09-12 19:15:38 -04:00
// Copyright 2023 Harran Ali <harran.m@gmail.com>. All rights reserved.
// Copyright (c) 2024 Zeni Kim <zenik@smarteching.com>
// Use of this source code is governed by MIT-style
// license that can be found in the LICENSE file.
package models
type User struct {
2024-12-06 04:48:10 -05:00
BaseModel
2024-09-12 19:15:38 -04:00
Name string
2024-12-04 08:39:08 -05:00
Fullname string
2024-09-12 19:15:38 -04:00
Email string
Password string
}
// Override the table name
func (User) TableName() string {
return "users"
}