23 lines
609 B
C#
23 lines
609 B
C#
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<int> Results { get; set; }
|
|
public int Total { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
}
|
|
}
|