🎨 Split the account current related endpoints

This commit is contained in:
2025-05-29 01:12:51 +08:00
parent 6a426efde9
commit 7f4c756365
3 changed files with 296 additions and 282 deletions

View File

@ -51,6 +51,8 @@ public class CloudFile : ModelBase
/// Metrics
/// When this used count keep zero, it means it's not used by anybody, so it can be recycled
public int UsedCount { get; set; } = 0;
/// An optional package identifier that indicates the cloud file's usage
[MaxLength(1024)] public string? Usage { get; set; }
[JsonIgnore] public Account.Account Account { get; set; } = null!;
public Guid AccountId { get; set; }