mirror of
https://github.com/BtbN/ClanServer.git
synced 2026-09-04 14:44:38 -05:00
19 lines
409 B
C#
19 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ClanServer.Models
|
|
{
|
|
public class Player
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string Passwd { get; set; }
|
|
|
|
public ICollection<Card> Cards { get; set; }
|
|
|
|
public JubeatProfile JubeatProfile { get; set; }
|
|
}
|
|
}
|