mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-08-12 12:13:31 +00:00
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; }
|
||
|
}
|
||
|
|
||
|
}
|