mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-20 07:40:57 +08:00
feat(image): add permission setting to EditImageDialog
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
namespace Foxel.Models.Request.Picture;
|
||||
using System.Collections.Generic; // Required for List<string>
|
||||
|
||||
public record UpdatePictureRequestWithId : UpdatePictureRequest
|
||||
namespace Foxel.Models.Request.Picture
|
||||
{
|
||||
public int Id { get; set; }
|
||||
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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user