19 lines
573 B
C#
19 lines
573 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|