14 lines
315 B
C#
14 lines
315 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.ViewModels.CharacterViewModels
|
|||
|
{
|
|||
|
public class CharacterViewModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int UserId { get; set; }
|
|||
|
}
|
|||
|
}
|