Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ILegalIdentityAttachment.cs
1using System;
2
3namespace Waher.Security
4{
8 public interface ILegalIdentityAttachment
9 {
13 string Id { get; }
14
18 string LegalId { get; }
19
23 string ContentType { get; }
24
28 string FileName { get; }
29
34 byte[] Signature { get; }
35
39 DateTime Timestamp { get; }
40 }
41}