-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCard.cs
29 lines (25 loc) · 845 Bytes
/
Card.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System.Collections.Generic;
namespace GauntletPrinter
{
public class Card
{
public string Layout { get; set; }
public string Name { get; set; }
public string ManaCost { get; set; }
public string Type { get; set; }
public List<string> Types { get; set; }
public List<string> Subtypes { get; set; }
public string Text { get; set; }
public string Power { get; set; }
public string Toughness { get; set; }
public string Loyalty { get; set; }
public string ImageName { get; set; }
public List<string> Names { get; set; }
public int TextLength { get; set; }
public bool Processed { get; set; }
public override string ToString()
{
return this.Name;
}
}
}