Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Knots.DTO.Group;
|
||||||
|
|
||||||
|
public class CreateGroupDto
|
||||||
|
{
|
||||||
|
public string? Nom { get; set; }
|
||||||
|
public int NombreMembres { get; set; }
|
||||||
|
public string? ProfilePicture { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Group;
|
||||||
|
|
||||||
|
public class DeleteGroupDto
|
||||||
|
{
|
||||||
|
public string? Id { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Knots.DTO.Group;
|
||||||
|
|
||||||
|
public class GetGroupDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Nom { get; set; }
|
||||||
|
public int NombreMembres { get; set; }
|
||||||
|
public string? ProfilePicture { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Knots.DTO.Group;
|
||||||
|
|
||||||
|
public class UpdateGroupDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Nom { get; set; }
|
||||||
|
public int NombreMembres { get; set; }
|
||||||
|
public string? ProfilePicture { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Key;
|
||||||
|
|
||||||
|
public class CreateKeyDto
|
||||||
|
{
|
||||||
|
public string? EnKey { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Key;
|
||||||
|
|
||||||
|
public class DeleteKeyDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Knots.DTO.Key;
|
||||||
|
|
||||||
|
public class GetKeyDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? EnKey { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Knots.DTO.Message;
|
||||||
|
|
||||||
|
public class CreateMessageDto
|
||||||
|
{
|
||||||
|
public string? Contenu { get; set; }
|
||||||
|
public DateTime Date { get; set; }
|
||||||
|
public Boolean Type { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Message;
|
||||||
|
|
||||||
|
public class DeleteMessageDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Knots.DTO.Message;
|
||||||
|
|
||||||
|
public class GetMessageDto
|
||||||
|
{
|
||||||
|
public string? Contenu { get; set; }
|
||||||
|
public DateTime Date { get; set; }
|
||||||
|
public Boolean Type { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Knots.DTO.Message;
|
||||||
|
|
||||||
|
public class UpdateMessageDto
|
||||||
|
{
|
||||||
|
public string? Contenu { get; set; }
|
||||||
|
public DateTime Date { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Role;
|
||||||
|
|
||||||
|
public class CreateRoleDto
|
||||||
|
{
|
||||||
|
public string? Libelle { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Role;
|
||||||
|
|
||||||
|
public class DeleteRoleDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Knots.DTO.Role;
|
||||||
|
|
||||||
|
public class GetRoleDto
|
||||||
|
{
|
||||||
|
public string? Id { get; set; }
|
||||||
|
}
|
||||||
@@ -19,10 +19,6 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="DTO\Group\" />
|
|
||||||
<Folder Include="DTO\Key\" />
|
|
||||||
<Folder Include="DTO\Message\" />
|
|
||||||
<Folder Include="DTO\Role\" />
|
|
||||||
<Folder Include="DTO\User\" />
|
<Folder Include="DTO\User\" />
|
||||||
<Folder Include="Validators\" />
|
<Folder Include="Validators\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user