go-mcm/model/django/note.go

12 lines
255 B
Go
Raw Normal View History

2019-10-02 19:03:23 +00:00
package django
const (
2019-10-07 17:21:04 +00:00
NoteID = ID
NotePlayerID Field = "player_id"
NoteMessage Field = "message"
NoteImportance Field = "importance"
NoteStaffID Field = "staff_id"
NoteDate Field = "date"
NoteLink = Link
2019-10-02 19:03:23 +00:00
)