18 lines
500 B
C#
18 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.ViewModels.CharacterWeaponViewModels
|
|
{
|
|
public class CharacterWeaponViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int CharacterId { get; set; }
|
|
public int WeaponId { get; set; }
|
|
public bool InUse { get; set; }
|
|
public bool HoldInRightHand { get; set; }
|
|
public bool HoldInLeftHand { get; set; }
|
|
}
|
|
}
|