sharpfall/Preview.cs
Adam R. Grey 6b27ad16f5 types
should make uuid an actual RFC4122 uuid, for now it's a string
2021-11-06 00:25:50 -04:00

12 lines
334 B
C#

using System;
using System.Collections.Generic;
namespace Sharpfall
{
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.
}
}