Files
Foxel/Models/Request/Picture/UpdatePictureRequestWithId.cs

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
}
}