Compare commits
2 Commits
04cb47802b
...
b859e53f95
| Author | SHA1 | Date | |
|---|---|---|---|
| b859e53f95 | |||
| 3cc96c4ebf |
@@ -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; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.Setting.Request;
|
||||||
|
|
||||||
|
public class PatchSettingLogoDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Logo { get; set; }
|
||||||
|
}
|
||||||
@@ -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; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Request;
|
||||||
|
|
||||||
|
public class CreateUserDto
|
||||||
|
{
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? Password { get; set; }
|
||||||
|
public string? Salt { get; set; }
|
||||||
|
public string? Fonction { get; set; }
|
||||||
|
public string? Email { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Request;
|
||||||
|
|
||||||
|
public class UpdateUserDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? Password { get; set; }
|
||||||
|
public string? Fonction { get; set; }
|
||||||
|
public string? Email { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Response;
|
||||||
|
|
||||||
|
public class GetUserDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? Password { get; set; }
|
||||||
|
public string? Salt { get; set; }
|
||||||
|
public string? Fonction { get; set; }
|
||||||
|
public string? Email { get; set; }
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user