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

8 lines
199 B
C#

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