More additions, lucky card based on day, redo of migrations because i messed up
This commit is contained in:
19
TOOHUCardAPI/Data/Models/RankTowerEntry.cs
Normal file
19
TOOHUCardAPI/Data/Models/RankTowerEntry.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TOOHUCardAPI.Data.Models
|
||||
{
|
||||
public class RankTowerEntry
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public int Id { get; set; }
|
||||
public Card BaseUnit { get; set; }
|
||||
public int Star { get; set; }
|
||||
public int Damage { get; set; }
|
||||
public int Attack { get; set; }
|
||||
public int Power { get; set; }
|
||||
public List<Card> Equipment { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user