session-companion/SessionCompanion/SessionCompanion.ViewModels/StrengthViewModels/StrengthViewModel.cs

19 lines
573 B
C#
Raw Normal View History

2020-12-04 21:34:30 +01:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace SessionCompanion.ViewModels.StrengthViewModels
{
public class StrengthViewModel
{
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 Athletics { get; set; }
public bool CanAthletics { get; set; }
}
}