Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycFile.cs
1using System;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
8{
9 public class KycFile
10 {
11 public required string Filename { get; set; }
12
13 public required byte[] Data { get; set; }
14
15 public string ContentType { get; set; } = "application/octet-stream";
16 }
17}