28 lines
586 B
C#
28 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
namespace LaDOSE.Entity
|
|
{
|
|
|
|
|
|
public class Player : Context.Entity
|
|
{
|
|
public Player()
|
|
{
|
|
}
|
|
|
|
|
|
public String Gamertag { get; set; }
|
|
public String Name { get; set; }
|
|
public int? ChallongeId {get;set;}
|
|
public int? SmashId {get;set;}
|
|
|
|
[NotMapped]
|
|
public Boolean IsChallonge => ChallongeId.HasValue;
|
|
|
|
//public List<Set> Sets { get; set; }
|
|
|
|
}
|
|
} |