23 lines
761 B
C#
23 lines
761 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.ViewModels.DexterityViewModels
|
|
{
|
|
public class DexterityViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int CharacterId { get; set; }
|
|
public int Value { get; set; }
|
|
public int Modification { get; set; }
|
|
public int SavingThrows { get; set; }
|
|
public bool CanSaveThrows { get; set; }
|
|
public int Acrobatics { get; set; }
|
|
public bool CanAcrobatics { get; set; }
|
|
public int SleightOfHand { get; set; }
|
|
public bool CanSleightOfHand { get; set; }
|
|
public int Stealth { get; set; }
|
|
public bool CanStealth { get; set; }
|
|
}
|
|
} |