20 lines
558 B
C#
20 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SessionCompanion.ViewModels.UniversalModels
|
|
{
|
|
public class UniversalStatisticViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Value { get; set; }
|
|
public int Modification { get; set; }
|
|
public int SavingThrows { get; set; }
|
|
public bool CanSaveThrows { get; set; }
|
|
public List<UniversalSkillViewModel>? Skills { get; set; }
|
|
}
|
|
}
|