using System; using System.Collections.Generic; using System.Text; namespace SessionCompanion.ViewModels.CharacterSpellViewModels { public class CharacterSpellWithSpellDetailsViewModel { public int SpellId { get; set; } public string Name { get; set; } public List Descriptions { get; set; } public List HigherLevel { get; set; } public string Range { get; set; } public List Components { get; set; } public string Material { get; set; } public bool Ritual { get; set; } public string Duration { get; set; } public bool Concentration { get; set; } public string CastingTime { get; set; } public int Level { get; set; } public string School { get; set; } public List Classes { get; set; } public List Subclasses { get; set; } } }