desc_format.go 286 B

1234567891011
  1. package archive
  2. // DescFormat is desc model.
  3. type DescFormat struct {
  4. ID int64 `json:"id"`
  5. TypeID int16 `json:"typeid"`
  6. Copyright int8 `json:"copyright"`
  7. Components string `json:"components"`
  8. Lang int8 `json:"lang"`
  9. Platform int8 `json:"platform"`
  10. }