Skip to content

Commit

Permalink
feat: ✨ : add phone number field to user create dto
Browse files Browse the repository at this point in the history
  • Loading branch information
pasindu-pr committed Apr 26, 2023
1 parent 9717bca commit 83ad020
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 83ad020

Please sign in to comment.