mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 19:41:03 +08:00
9 lines
206 B
C#
9 lines
206 B
C#
namespace Foxel.Models.Request.Picture;
|
|
|
|
public class UpdatePictureRequest
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<string>? Tags { get; set; }
|
|
}
|