Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the HeroCard class.
 /// </summary>
 public HeroCard(string title = default(string), string subtitle = default(string), string text = default(string), IList <CardImage> images = default(IList <CardImage>), IList <CardAction> buttons = default(IList <CardAction>), CardAction tap = default(CardAction))
 {
     Title    = title;
     Subtitle = subtitle;
     Text     = text;
     Images   = images;
     Buttons  = buttons;
     Tap      = tap;
 }
 /// <summary>
 /// Initializes a new instance of the ReceiptCard class.
 /// </summary>
 public ReceiptCard(string title = default(string), IList <ReceiptItem> items = default(IList <ReceiptItem>), IList <Fact> facts = default(IList <Fact>), CardAction tap = default(CardAction), string total = default(string), string tax = default(string), string vat = default(string), IList <CardAction> buttons = default(IList <CardAction>))
 {
     Title   = title;
     Items   = items;
     Facts   = facts;
     Tap     = tap;
     Total   = total;
     Tax     = tax;
     Vat     = vat;
     Buttons = buttons;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the CardImage class.
 /// </summary>
 public CardImage(string url = default(string), string alt = default(string), CardAction tap = default(CardAction))
 {
     Url = url;
     Alt = alt;
     Tap = tap;
 }