mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-22 10:33:24 +00:00
a530f36f65
- Refactor: Make status and priority a subpackage of conversations package - Refactor: Remove hardcoded priority array - Fixes to query builder. - Feat: set Favicon from the general app settings
10 lines
199 B
Go
10 lines
199 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Priority struct {
|
|
ID int `db:"id" json:"id"`
|
|
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
Name string `db:"name" json:"name"`
|
|
}
|