Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ImageSource.cs
1using System;
2
4{
8 public class ImageSource : IImageSource
9 {
13 public string Url { get; set; }
14
18 public int? Width { get; set; }
19
23 public int? Height { get; set; }
24 }
25}
Contains information about an emoji image.
Definition: ImageSource.cs:9
int? Width
Width of image, if available.
Definition: ImageSource.cs:18
int? Height
Height of image, if available.
Definition: ImageSource.cs:23
Contains information about an emoji image.
Definition: IImageSource.cs:9