15 lines
353 B
C#
15 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.ViewModels.CharacterArmorViewModels
|
|
{
|
|
public class CharacterArmorViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int CharacterId { get; set; }
|
|
public int ArmorId { get; set; }
|
|
public bool InUse { get; set; }
|
|
}
|
|
}
|