18 lines
385 B
C#
18 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.ViewModels.MonsterActionsViewModels
|
|
{
|
|
public class MonsterActionsViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// Id potwora
|
|
/// </summary>
|
|
public int MonsterId { get; set; }
|
|
|
|
public int GameActionId { get; set; }
|
|
}
|
|
}
|