mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 04:49:49 +08:00
17 lines
343 B
C#
17 lines
343 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Foxel.Models.Request.Album;
|
|
|
|
public record CreateAlbumRequest
|
|
{
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[StringLength(500)]
|
|
public string? Description { get; set; }
|
|
|
|
|
|
public int? CoverPictureId { get; set; }
|
|
}
|