session-companion/SessionCompanion/SessionCompanion.ViewModels/SpellViewModels/SpellViewModel.cs

27 lines
911 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace SessionCompanion.ViewModels.SpellViewModels
{
public class SpellViewModel
{
public int Id { 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; }
}
}