namespace SessionCompanion.ViewModels.ConstitutionViewModels
{
public class ConstitutionViewModel
{
///
/// Identyfikator kondycji postaci
///
public int Id { get; set; }
///
/// Identyfikator postaci
///
public int CharacterId { get; set; }
///
/// Wartość kondycji
///
public int Value { get; set; }
///
/// Modyfikator rzutów
///
public int Modification { get; set; }
///
/// Modyfikator rzutów obronnych
///
public int SavingThrows { get; set; }
///
/// Czy postać posiada biegłość w kondycji
///
public bool CanSaveThrows { get; set; }
}
}