diff --git a/DysonNetwork.Drive/Storage/CloudFile.cs b/DysonNetwork.Drive/Storage/CloudFile.cs index 680ec4c..7211044 100644 --- a/DysonNetwork.Drive/Storage/CloudFile.cs +++ b/DysonNetwork.Drive/Storage/CloudFile.cs @@ -45,7 +45,7 @@ public class CloudFile : ModelBase, ICloudFile, IIdentifiedResource public bool HasThumbnail { get; set; } = false; public bool IsEncrypted { get; set; } = false; - [JsonIgnore] public FilePool? Pool { get; set; } + public FilePool? Pool { get; set; } public Guid? PoolId { get; set; } [JsonIgnore] public FileBundle? Bundle { get; set; } public Guid? BundleId { get; set; } @@ -156,4 +156,4 @@ public class CloudFileReference : ModelBase ExpiredAt = ExpiredAt?.ToTimestamp() }; } -} \ No newline at end of file +}