creature-bird-dwarf/ScryfallTypes/Preview.cs

12 lines
338 B
C#
Raw Permalink Normal View History

2021-10-07 06:27:33 -04:00
using System;
using System.Collections.Generic;
namespace Scryfalltypes
{
public class Preview
{
public DateTime previewed_at; //The date this card was previewed.
public Uri source_uri; //A link to the preview for this card.
public string source; //The name of the source that previewed this card.
}
}