7 lines
141 B
Go
7 lines
141 B
Go
|
package interfaces
|
||
|
|
||
|
type IsZoneMomentThumbedUpFillable interface {
|
||
|
GetZoneMomentId() int64
|
||
|
SetIsZoneMomentThumbedUp(is_thumbed_up int64)
|
||
|
}
|