|
|
@@ -18,6 +18,12 @@ public class FileInput : BaseIdInput
|
|
|
/// </summary>
|
|
|
public string FileType { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 是否公开
|
|
|
+ /// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
|
|
+ /// </summary>
|
|
|
+ public bool IsPublic { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 文件Url
|
|
|
/// </summary>
|
|
|
@@ -72,6 +78,12 @@ public class UploadFileFromBase64Input
|
|
|
/// 文件类型
|
|
|
/// </summary>
|
|
|
public string FileType { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否公开
|
|
|
+ /// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
|
|
+ /// </summary>
|
|
|
+ public bool IsPublic { get; set; }
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
@@ -90,6 +102,12 @@ public class FileUploadInput
|
|
|
/// </summary>
|
|
|
public string FileType { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 是否公开
|
|
|
+ /// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
|
|
+ /// </summary>
|
|
|
+ public bool IsPublic { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 文件路径
|
|
|
/// </summary>
|
|
|
@@ -168,6 +186,12 @@ public class FileOutput
|
|
|
/// </summary>
|
|
|
public string FileType { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 是否公开
|
|
|
+ /// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
|
|
+ /// </summary>
|
|
|
+ public bool IsPublic { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 上传人
|
|
|
/// </summary>
|