Files
warehouse-management-BE/internal/models/role_model.go
Tran Anh Tuan 6a4a96e0ca Base Project
2026-05-08 14:32:24 +07:00

12 lines
252 B
Go

package models
import "time"
type Role struct {
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
CreatedAt time.Time `json:"createdAt"`
CreatedBy string `json:"createdBy"`
}