Creating setting's endpoints

This commit is contained in:
2025-10-16 17:39:36 +02:00
parent d0f20e08f0
commit 0121435594
7 changed files with 180 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace PyroFetes.DTO.SettingDTO.Request;
public class UpdateSettingDto
{
public int Id { get; set; }
public string? ElectronicSignature { get; set; }
public string? Logo { get; set; }
}