intergartions XLabs.* WIP MVVM

This commit is contained in:
Paul Schneider 2016-09-27 02:35:45 +02:00
commit b6d3dc1a9b
49 changed files with 6236 additions and 2960 deletions

View file

@ -4,6 +4,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.Model
{
@ -19,5 +20,12 @@ namespace BookAStar.Model
public string EMail { get; set; }
public string Phone { get; set; }
public Location BillingAddress { get; set; }
public ImageSource AvatarOrNot
{
get
{
return Avatar ?? ImageSource.FromResource("BookAStar.icon-anon.png");
}
}
}
}