interface.go

1package entity
2
3type Interface interface {
4	// Id return the Entity identifier
5	Id() Id
6}