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