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

45 lines
1.1 KiB
C#
Raw Permalink Normal View History

namespace SessionCompanion.ViewModels.StrengthViewModels
2020-12-04 21:34:30 +01:00
{
public class StrengthViewModel
{
/// <summary>
/// Identyfikator siły postaci
/// </summary>
2020-12-04 21:34:30 +01:00
public int Id { get; set; }
/// <summary>
/// Identyfikator postaci
/// </summary>
2020-12-04 21:34:30 +01:00
public int CharacterId { get; set; }
/// <summary>
/// Wartość siły
/// </summary>
2020-12-04 21:34:30 +01:00
public int Value { get; set; }
/// <summary>
/// Modyfikator rzutów
/// </summary>
2020-12-04 21:34:30 +01:00
public int Modification { get; set; }
/// <summary>
/// Modyfikator rzutów obronnych
/// </summary>
2020-12-04 21:34:30 +01:00
public int SavingThrows { get; set; }
/// <summary>
/// Czy postać posiada biegłość w sile
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanSaveThrows { get; set; }
/// <summary>
/// Wartość umiejętności atletyki
/// </summary>
2020-12-04 21:34:30 +01:00
public int Athletics { get; set; }
/// <summary>
/// Czy postać posiada biegłość w atletyce
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanAthletics { get; set; }
}
}