Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 590 Bytes

File metadata and controls

27 lines (21 loc) · 590 Bytes

RelationalSerializer

Example

Example screenshot showing data

The above is generated from the following code:

//...using statements
public class Card
{
    public string Name { get; set; }
    public string CardText { get; set; }
    public string CardSuperType { get; set; }
    public string[] CardTypes { get; set; }
    public Card[] RelatedCards { get; set; }
    public string[] RelatedKeywords { get; set; }
    public string CodeBehind { get; set; }

//...functions
}