19 lines
227 B
Go
19 lines
227 B
Go
|
package data
|
||
|
|
||
|
const (
|
||
|
Admin = iota
|
||
|
Editor
|
||
|
Writer
|
||
|
)
|
||
|
|
||
|
type Role int
|
||
|
|
||
|
type User struct {
|
||
|
RejectedArticles *ArticleList
|
||
|
UserName string
|
||
|
FirstName string
|
||
|
LastName string
|
||
|
ID int64
|
||
|
Role
|
||
|
}
|