14 lines
330 B
C#
14 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Database.Tables
|
|
{
|
|
public class User : BaseEntity
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public ICollection<Character> Character { get; set; }
|
|
}
|
|
}
|