blob: 2faf384763502da6cf5f8125ef8c3936b7bd171a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package models
import "fagott.pw/charakterin"
const (
LIKE_LIST = 0
)
type Like struct {
ContentID int
Content interface{}
User *charakterin.User
ContentType int
}
|