diff --git a/PyroFetes/DTO/Setting/Request/CreateSettingDto.cs b/PyroFetes/DTO/Setting/Request/CreateSettingDto.cs new file mode 100644 index 0000000..953b39a --- /dev/null +++ b/PyroFetes/DTO/Setting/Request/CreateSettingDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.Setting.Request; + +public class CreateSettingDto +{ + public string? ElectronicSignature { get; set; } + public string? Logo { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/Setting/Request/PatchSettingElectronicSignatureDto.cs b/PyroFetes/DTO/Setting/Request/PatchSettingElectronicSignatureDto.cs new file mode 100644 index 0000000..6ea2aa3 --- /dev/null +++ b/PyroFetes/DTO/Setting/Request/PatchSettingElectronicSignatureDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.Setting.Request; + +public class PatchSettingElectronicSignatureDto +{ + public int Id { get; set; } + public string? ElectronicSignature { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs b/PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs new file mode 100644 index 0000000..10b4f83 --- /dev/null +++ b/PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.Setting.Request; + +public class PatchSettingLogoDto +{ + public int Id { get; set; } + public string? Logo { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/Setting/Response/GetSettingDto.cs b/PyroFetes/DTO/Setting/Response/GetSettingDto.cs new file mode 100644 index 0000000..c6ccbb7 --- /dev/null +++ b/PyroFetes/DTO/Setting/Response/GetSettingDto.cs @@ -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; } +} \ No newline at end of file