connections.go 557 B

1234567891011121314151617181920
  1. /*
  2. * @Author: LinkLeong link@icewhale.org
  3. * @Date: 2022-07-27 10:30:43
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-08-04 20:06:04
  6. * @FilePath: /CasaOS/model/connections.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package model
  12. type Connections struct {
  13. ID uint `json:"id"`
  14. Username string `json:"username"`
  15. Password string `json:"password,omitempty"`
  16. Host string `json:"host"`
  17. Port string `json:"port"`
  18. MountPoint string `json:"mount_point"`
  19. }