Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPhoto.cs
1namespace Paiwise
2{
6 public interface IPhoto
7 {
11 string ContentType { get; }
12
16 byte[] Binary { get; }
17 }
18}
Interface for photos.
Definition: IPhoto.cs:7
string ContentType
Internet Content-Type
Definition: IPhoto.cs:11
byte[] Binary
Binary representation of photo.
Definition: IPhoto.cs:16