Lots of additions and changes
This commit is contained in:
15
TOOHUCardAPI/Data/Models/Card.cs
Normal file
15
TOOHUCardAPI/Data/Models/Card.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using TOOHUCardAPI.Data.Enums;
|
||||
|
||||
namespace TOOHUCardAPI.Data.Models
|
||||
{
|
||||
public class Card
|
||||
{
|
||||
[Key]
|
||||
public string ItemCode { get; set; }
|
||||
public string CardName { get; set; }
|
||||
public Rarity Rarity { get; set; }
|
||||
public bool HasVoice { get; set; }
|
||||
public bool HasPortrait { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user