Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/SettingDTO/Request/PatchSettingLogoDto.cs
T
2026-05-05 10:53:52 +02:00

7 lines
151 B
C#

namespace PyroFetes.DTO.SettingDTO.Request;
public class PatchSettingLogoDto
{
public int Id { get; set; }
public string? Logo { get; set; }
}