namespace SessionCompanion.ViewModels.StrengthViewModels { public class StrengthViewModel { /// /// Identyfikator siły postaci /// public int Id { get; set; } /// /// Identyfikator postaci /// public int CharacterId { get; set; } /// /// Wartość siły /// 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 sile /// public bool CanSaveThrows { get; set; } /// /// Wartość umiejętności atletyki /// public int Athletics { get; set; } /// /// Czy postać posiada biegłość w atletyce /// public bool CanAthletics { get; set; } } }