file.go 655 B

12345678910111213141516171819202122
  1. /*
  2. * @Author: LinkLeong link@icewhale.com
  3. * @Date: 2022-05-26 14:21:57
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-06-02 11:14:15
  6. * @FilePath: /CasaOS/model/notify/file.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package notify
  12. type File struct {
  13. Finished bool `json:"finished"`
  14. ProcessedSize int64 `json:"processed_size"`
  15. ProcessingPath string `json:"processing_path"`
  16. Status string `json:"status"`
  17. TotalSize int64 `json:"total_size"`
  18. Id string `json:"id"`
  19. To string `json:"to"`
  20. Type string `json:"type"`
  21. }