26 lines
905 B
C#
26 lines
905 B
C#
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<string> Descriptions { get; set; }
|
|
public List<string> HigherLevel { get; set; }
|
|
public string Range { get; set; }
|
|
public List<string> 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<string> Classes { get; set; }
|
|
public List<string> Subclasses { get; set; }
|
|
}
|
|
}
|