using GalaSoft.MvvmLight; using Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Audit { public class AuditData : ObservableObject { private UserAccount useraccount = null; public UserAccount UserAccount { get { return useraccount; } set { useraccount = value; RaisePropertyChanged("UserAccount");} } } }