Implementation to have a favorite DZ by user.

This commit is contained in:
Sébastien André
2021-03-24 18:04:08 +01:00
parent beee601a57
commit 0a6dbf42e4
12 changed files with 255 additions and 194 deletions

View File

@@ -0,0 +1,9 @@
namespace skydiveLogs_api.Domain
{
public class FavoriteDropZone
{
public DropZone DropZone { get; set; }
public User User { get; set; }
}
}