namespace Butter.Dtos.Album;
///
/// Represents the data needed to create a new album.
///
public class AlbumCreateDto {
///
/// Gets or sets the name of the album.
///
public string Name { get; set; } = string.Empty;
///
/// Gets or sets the owner ID of the album.
///
public Guid? Owner { get; set; }
///
/// Gets or sets the person ID associated with the album.
///
public Guid? Person { get; set; }
///
/// Gets or sets the cover asset ID for the album.
///
public Guid? CoverAssetId { get; set; }
///
/// Gets or sets the list of asset IDs in the album.
///
public List? Assets { get; set; }
}