Skip to content

Commit

Permalink
Merge pull request #82 from PasinduPrabhashitha/async-messaging
Browse files Browse the repository at this point in the history
feat: ✨ : add phone number field to user create dto
  • Loading branch information
pasindu-pr authored Apr 26, 2023
2 parents 93c1597 + 83ad020 commit abfd5f7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ public class PublishUserCreateDto
{
public string Id { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
}
}

0 comments on commit abfd5f7

Please sign in to comment.