mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 00:21:15 +00:00
23 lines
455 B
Go
23 lines
455 B
Go
|
package sii
|
||
|
|
||
|
func init() {
|
||
|
RegisterBlock(&FerryLogEntry{})
|
||
|
}
|
||
|
|
||
|
type FerryLogEntry struct {
|
||
|
Ferry Ptr `sii:"ferry"`
|
||
|
Connection Ptr `sii:"connection"`
|
||
|
LastVisit int64 `sii:"last_visit"`
|
||
|
UseCount int64 `sii:"use_count"`
|
||
|
|
||
|
blockName string
|
||
|
}
|
||
|
|
||
|
func (FerryLogEntry) Class() string { return "ferry_log_entry" }
|
||
|
|
||
|
func (f *FerryLogEntry) Init(class, name string) {
|
||
|
f.blockName = name
|
||
|
}
|
||
|
|
||
|
func (f FerryLogEntry) Name() string { return f.blockName }
|