You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
455 B
29 lines
455 B
package model |
|
|
|
// review state const. |
|
const ( |
|
ReviewStateWait = iota |
|
ReviewStatePass |
|
ReviewStateNoPass |
|
ReviewStateArchived |
|
ReviewStateQueuing = 10 |
|
) |
|
|
|
// review property const. |
|
const ( |
|
ReviewProperty = iota |
|
ReviewPropertyFace |
|
ReviewPropertySign |
|
ReviewPropertyName |
|
) |
|
|
|
// UserPropertyReview is. |
|
type UserPropertyReview struct { |
|
Mid int64 |
|
Old string |
|
New string |
|
State int8 |
|
Property int8 |
|
IsMonitor bool |
|
Extra string |
|
}
|
|
|