greatape/components/contracts/object.go

15 wiersze
309 B
Go
Czysty Zwykły widok Historia

package contracts
import . "fmt"
type IObject interface {
Stringer
2023-05-30 12:59:18 +00:00
// Id returns the unique identifier or 'Id' of this object instance.
Id() int64
2023-05-30 12:59:18 +00:00
SortOrder() float32
// Validate checks whether the current instance contains any errors.
Validate() error
Lock(context uint64)
Unlock(context uint64)
}