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