mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-24 01:29:58 +08:00
feat(album): add cover picture functionality to albums and enhance album management API
This commit is contained in:
@@ -7,9 +7,11 @@ public record AlbumResponse
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public int PictureCount { get; set; } = 0;
|
||||
public int UserId { get; set; }
|
||||
public string? Username { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime UpdatedAt { get; set; }
|
||||
public string? CoverPicturePath { get; set; }
|
||||
public string? CoverPictureThumbnailPath { get; set; }
|
||||
public int PictureCount { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user