using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;

namespace SessionCompanion.ViewModels.ConstitutionViewModels
{
    public class ConstitutionViewModel
    {
        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; }
    }
}