13 lines
280 B
C#
13 lines
280 B
C#
namespace skydiveLogs_api.Domain
|
|
{
|
|
public class FavoriteDropZone
|
|
{
|
|
#region Public Properties
|
|
|
|
public DropZone DropZone { get; set; }
|
|
public int Id { get; set; }
|
|
public User User { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |