using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class DiceResult : INotifyPropertyChanged { public string Id { get; set; } public string SessionId { get; set; } public string UserId { get; set; } public string Notation { get; set; } public List Results { get; set; } public int Total { get; set; } public DateTime Timestamp { get; set; } public event PropertyChangedEventHandler PropertyChanged; } }