interaction.go 186 B

1234567891011
  1. package interaction
  2. // Interaction is currently not used
  3. type Interaction interface {
  4. Location() string
  5. LocationId() int
  6. Id() int
  7. Type() string
  8. String() string
  9. Purpose() string
  10. }