Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ImageSource.cs
2{
6 public class ImageSource : IImageSource
7 {
11 public string Url { get; set; }
12
16 public int? Width { get; set; }
17
21 public int? Height { get; set; }
22 }
23}
Contains information about an emoji image.
Definition: ImageSource.cs:7
int? Width
Width of image, if available.
Definition: ImageSource.cs:16
int? Height
Height of image, if available.
Definition: ImageSource.cs:21
Contains information about an emoji image.
Definition: IImageSource.cs:7