15 lines
386 B
C#
15 lines
386 B
C#
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 Quality { get; set; }
|
|
public bool HasVoice { get; set; }
|
|
public bool HasPortrait { get; set; }
|
|
}
|
|
} |