Merge : Champion entity
continuous-integration/drone/push Build is failing Details

pull/2/head
nathan boileau 2 years ago
commit 8edc0a8ec0

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
namespace EFLol
{
@ -16,5 +11,12 @@ namespace EFLol
[MaxLength(256, ErrorMessage = "Bio cannot be longer than 256 characters.")]
public string Bio { get; set; }
}
//public ChampionClass Class { get; set; }
//public string Icon { get; set; }
//public LargeImage Image { get; set; }
//public ReadOnlyCollection<Skin> Skins { get; private set; }
//public ReadOnlyDictionary<string, int> Characteristics { get; private set; }
//private HashSet<Skill> skills = new HashSet<Skill>();
}
}

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EFLol
{
public class SkinEntity
{
public String Name { get; set; }
public String Description { get; set; }
public String Icon { get; set; }
public float Price { get; set; }
}
}
Loading…
Cancel
Save