Files
PyroFetes-Sujet1/PyroFetes/DTO/SettingDTO/Response/GetSettingDto.cs

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; }
}