-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #455 from SharebookBR/develop
Develop to master
- Loading branch information
Showing
23 changed files
with
734 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ShareBook.Api.ViewModels | ||
{ | ||
public class ParentAprovalVM | ||
{ | ||
public string ParentHashCodeAproval { get; set; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,5 +26,8 @@ | |
"Default": "Warning" | ||
} | ||
} | ||
}, | ||
"ClientSettings": { | ||
"AndroidMinVersion": "v1.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
| ||
namespace ShareBook.Domain.DTOs | ||
{ | ||
public class RegisterUserDTO | ||
{ | ||
public string Name { get; set; } | ||
|
||
public string Email { get; set; } | ||
|
||
public string Street { get; set; } | ||
|
||
public string Number { get; set; } | ||
|
||
public string Complement { get; set; } | ||
|
||
public string Neighborhood { get; set; } | ||
|
||
public string PostalCode { get; set; } | ||
|
||
public string City { get; set; } | ||
|
||
public string State { get; set; } | ||
|
||
public string Country { get; set; } | ||
|
||
public string Linkedin { get; set; } | ||
|
||
public string Phone { get; set; } | ||
|
||
public string Password { get; set; } | ||
|
||
public bool AllowSendingEmail { get; set; } = true; | ||
|
||
public int Age { get; set; } | ||
|
||
public string ParentEmail { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.