Initial commit

This commit is contained in:
shiyu
2025-05-18 20:48:20 +08:00
commit cde2c7b997
79 changed files with 5713 additions and 0 deletions
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace Foxel.Models.Request.Album;
public class CreateAlbumRequest
{
[Required]
[StringLength(100)]
public string Name { get; set; } = string.Empty;
[StringLength(500)]
public string? Description { get; set; }
}