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