From b859e53f9503b92a637043ee2ea82bfee156a0ea Mon Sep 17 00:00:00 2001 From: ikuzenkuna Date: Thu, 9 Oct 2025 16:34:12 +0200 Subject: [PATCH] Creating all setting Dto --- PyroFetes/DTO/Setting/Request/CreateSettingDto.cs | 7 +++++++ .../Setting/Request/PatchSettingElectronicSignatureDto.cs | 7 +++++++ PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs | 7 +++++++ PyroFetes/DTO/Setting/Response/GetSettingDto.cs | 8 ++++++++ 4 files changed, 29 insertions(+) create mode 100644 PyroFetes/DTO/Setting/Request/CreateSettingDto.cs create mode 100644 PyroFetes/DTO/Setting/Request/PatchSettingElectronicSignatureDto.cs create mode 100644 PyroFetes/DTO/Setting/Request/PatchSettingLogoDto.cs create mode 100644 PyroFetes/DTO/Setting/Response/GetSettingDto.cs 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