Skip to content

Commit abfd5f7

Browse files
authored
Merge pull request #82 from PasinduPrabhashitha/async-messaging
feat: ✨ : add phone number field to user create dto
2 parents 93c1597 + 83ad020 commit abfd5f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/services/Florage.Shared/Dtos/Users/PublishUserCreateDto.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ public class PublishUserCreateDto
44
{
55
public string Id { get; set; } = string.Empty;
66
public string Email { get; set; } = string.Empty;
7-
public string UserName { get; set; } = string.Empty;
7+
public string UserName { get; set; } = string.Empty;
8+
public string PhoneNumber { get; set; } = string.Empty;
89
}
910
}

0 commit comments

Comments
 (0)