| // Dir is used to represent directories. |
| // TODO(jyh): The IDL does not recognize empty structs. Fix it and remove this |
| // Movie represents a movie. |
| // TODO(jyh): Replace these times with IDL types when they are implemented. |
| ReleaseDate int64 // ns since the Unix epoch. |
| // Cast/ contains values of type Part. |
| // Reviews/ contains values of type Review. |
| // Part represents the role of an actor. |
| Actor storage.ID // Person |
| // Review is a movie review. |
| // Person represents a person, in any role, including producers, director, |
| BirthDate int64 // ns since the Unix epoch. |
| // Roles/ contains values of type Role. |