A Chat window

This commit is contained in:
Paul Schneider 2016-10-10 12:58:14 +02:00
commit c88fc39a29
11 changed files with 137 additions and 1 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XLabs.Forms.Mvvm;
namespace BookAStar.ViewModels
{
class ChatViewModel: ViewModel
{
public string UserName {
get; set;
}
}
}