mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-28 03:20:10 +00:00
* Add upload link and download link API * Use go 1.22 for ci * Go add upload link API * Add norm UTF8 path * Go add upload link API * Add seahub_settings.py * Add projectDir * Add download link API * Set and check etag * Add comment and set no-cache --------- Co-authored-by: 杨赫然 <heran.yang@seafile.com>
11 lines
244 B
Vala
11 lines
244 B
Vala
namespace Seafile {
|
|
|
|
public class ShareLinkInfo : Object {
|
|
public string repo_id { set; get; }
|
|
public string file_path { set; get; }
|
|
public string parent_dir { set; get; }
|
|
public string share_type { set; get; }
|
|
}
|
|
|
|
}
|