Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SpecialFile.cs
2{
6 internal class SpecialFile
7 {
8 private FilePurpose purpose;
9 private string fileName;
10 private string fileContentType;
11 private long fileSize;
12
13 public SpecialFile(FilePurpose Purpose, string FileName, string FileContentType, long FileSize)
14 {
15 this.purpose = Purpose;
16 this.fileName = FileName;
17 this.fileContentType = FileContentType;
18 this.fileSize = FileSize;
19 }
20
24 public FilePurpose Purpose
25 {
26 get => this.purpose;
27 internal set => this.purpose = value;
28 }
29
33 public string FileName
34 {
35 get => this.fileName;
36 internal set => this.fileName = value;
37 }
38
42 public string FileContentType
43 {
44 get => this.fileContentType;
45 internal set => this.fileContentType = value;
46 }
47
51 public long FileSize
52 {
53 get => this.fileSize;
54 internal set => this.fileSize = value;
55 }
56
57 }
58}
FilePurpose
Purpose of file uploaded
Definition: FileInfo.cs:9