forked from sanchezvem/pyrofetes-backend
Refactor all code
This commit is contained in:
@@ -2,6 +2,6 @@ namespace PyroFetes.DTO.SettingDTO.Request;
|
||||
|
||||
public class CreateSettingDto
|
||||
{
|
||||
public string? ElectronicSignature { get; set; }
|
||||
public string? Logo { get; set; }
|
||||
public IFormFile? ElectronicSignature { get; set; }
|
||||
public IFormFile? Logo { get; set; }
|
||||
}
|
||||
@@ -3,5 +3,5 @@ namespace PyroFetes.DTO.SettingDTO.Request;
|
||||
public class PatchSettingElectronicSignatureDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? ElectronicSignature { get; set; }
|
||||
public IFormFile? ElectronicSignature { get; set; }
|
||||
}
|
||||
@@ -3,5 +3,5 @@ namespace PyroFetes.DTO.SettingDTO.Request;
|
||||
public class PatchSettingLogoDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Logo { get; set; }
|
||||
public IFormFile? Logo { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user