mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 04:49:49 +08:00
14 lines
412 B
C#
14 lines
412 B
C#
using System.Collections.Generic; // Required for List<string>
|
|
|
|
namespace Foxel.Models.Request.Picture
|
|
{
|
|
public class UpdatePictureRequestWithId
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<string>? Tags { get; set; }
|
|
public int? Permission { get; set; } // Added Permission property
|
|
}
|
|
}
|