mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-22 09:01:43 +03:00
833083ca0e
Fixing Web hosting in Azure
17 lines
360 B
C#
17 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MyFriendsAround.Common.Entities
|
|
{
|
|
public partial class Friend
|
|
{
|
|
|
|
public virtual double Latitude { get; set; }
|
|
public virtual double Longitude { get; set; }
|
|
public virtual string PictureUrl { get; set; }
|
|
|
|
}
|
|
}
|