14 lines
340 B
C#
14 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.ViewModels.CharacterOtherEquipmentViewModels
|
|
{
|
|
public class CharacterOtherEquipmentViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int CharacterId { get; set; }
|
|
public int OtherEquipmentId { get; set; }
|
|
}
|
|
}
|