using System; using System.Collections.Generic; using System.Text; namespace SessionCompanion.ViewModels.MonsterLegendaryActionsViewModels { public class MonsterLegendaryActionsViewModel { public int Id { get; set; } public int MonsterId { get; set; } public int LegendaryActionId { get; set; } } }