aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs
index 4211297dc..f7e94e2ca 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/UserDTO.cs
@@ -9,25 +9,6 @@ namespace Tango.BL.DTO
{
public class UserDTO : UserDTOBase
{
- public AddressDTO Address { get; set; }
- public ContactDTO Contact { get; set; }
-
- public List<UsersRoleDTO> UsersRoles { get; set; }
-
- public UserDTO()
- {
- UsersRoles = new List<UsersRoleDTO>();
- }
-
- protected override bool OnShouldActionLogIgnore(string propName)
- {
- return propName == nameof(UserDTO.LastLogin);
- }
-
- protected override string OnGetActionLogName()
- {
- return $"User '{Email}'";
- }
}
}