8 lines
201 B
C#
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; }
|
|
} |