mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 05:31:07 +08:00
7 lines
141 B
C#
7 lines
141 B
C#
namespace Foxel.Models.Request.Picture;
|
|
|
|
public record UpdatePictureRequestWithId : UpdatePictureRequest
|
|
{
|
|
public int Id { get; set; }
|
|
}
|