Files
pyrofetes-backend/PyroFetes/DTO/SettingDTO/Request/UpdateSettingDto.cs

8 lines
201 B
C#

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