Creating all setting Dto
This commit is contained in:
7
PyroFetes/DTO/Setting/Request/CreateSettingDto.cs
Normal file
7
PyroFetes/DTO/Setting/Request/CreateSettingDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PyroFetes.DTO.Setting.Request;
|
||||
|
||||
public class CreateSettingDto
|
||||
{
|
||||
public string? ElectronicSignature { get; set; }
|
||||
public string? Logo { get; set; }
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
namespace PyroFetes.DTO.Setting.Request;
|
||||
|
||||
public class PatchSettingElectronicSignatureDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? ElectronicSignature { get; set; }
|
||||
}
|
7
PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs
Normal file
7
PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PyroFetes.DTO.Setting.Request;
|
||||
|
||||
public class PatchSettingLogoDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Logo { get; set; }
|
||||
}
|
8
PyroFetes/DTO/Setting/Response/GetSettingDto.cs
Normal file
8
PyroFetes/DTO/Setting/Response/GetSettingDto.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace PyroFetes.DTO.Setting.Response;
|
||||
|
||||
public class GetSettingDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? ElectronicSignature { get; set; }
|
||||
public string? Logo { get; set; }
|
||||
}
|
Reference in New Issue
Block a user