diff options
Diffstat (limited to 'src/Services/DevHive.Services.Models/Identity/User/FriendServiceModel.cs')
| -rw-r--r-- | src/Services/DevHive.Services.Models/Identity/User/FriendServiceModel.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Services/DevHive.Services.Models/Identity/User/FriendServiceModel.cs b/src/Services/DevHive.Services.Models/Identity/User/FriendServiceModel.cs new file mode 100644 index 0000000..a784f5c --- /dev/null +++ b/src/Services/DevHive.Services.Models/Identity/User/FriendServiceModel.cs @@ -0,0 +1,10 @@ +using System; + +namespace DevHive.Services.Models.Identity.User +{ + public class FriendServiceModel + { + public Guid Id { get; set; } + public string UserName { get; set; } + } +} |
