share.go 424 B

1234567891011121314151617
  1. /*
  2. * @Author: LinkLeong link@icewhale.org
  3. * @Date: 2022-07-26 11:12:12
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-07-27 14:58:55
  6. * @FilePath: /CasaOS/model/share.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package model
  12. type Shares struct {
  13. ID uint `json:"id"`
  14. Anonymous bool `json:"anonymous"`
  15. Path string `json:"path"`
  16. }