14 lines
339 B
C#
14 lines
339 B
C#
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; }
|
|
}
|
|
}
|