Write a SpacetimeDB backend module in C# that defines a struct type and uses it in a table.

TYPES
- Struct: Position
  - Fields:
    - X: int
    - Y: int

TABLE
- Entity
  - Struct: Entity
  - Fields:
    - Id: int (primary key)
    - Pos: Position
