mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 19:41:03 +08:00
14 lines
288 B
C#
14 lines
288 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; }
|
|
}
|