using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SessionCompanion.ViewModels.CharacterViewModels
{
public class CharacterBasicInfoViewModel
{
///
/// Identyfikator postaci
///
public int Id { get; set; }
///
/// Nazwa postaci
///
public string Name { get; set; }
///
/// Poziom postaci
///
public int Level { get; set; }
///
/// Aktualna ilość życia postaci
///
public int CurrentHealthPoints { get; set; }
///
/// Maksymalna ilość życia psotaci
///
public int MaxHealthPoints { get; set; }
///
/// Klasa postaci
///
public string Class { get; set; }
///
/// Rasa postaci
///
public string Race{ get; set; }
}
}