Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPhoto.cs
2
3namespace Paiwise
4{
8 [DefaultImplementation(typeof(Photo))]
9 public interface IPhoto
10 {
14 string Id { get; }
15
19 string ContentType { get; }
20
24 string FileName { get; }
25
29 byte[] Binary { get; }
30 }
31}
Interface for photos.
Definition: IPhoto.cs:10
string ContentType
Internet Content-Type
Definition: IPhoto.cs:19
string FileName
File Name of photo.
Definition: IPhoto.cs:24
byte[] Binary
Binary representation of photo.
Definition: IPhoto.cs:29
string Id
Unique identifier for photo.
Definition: IPhoto.cs:14