initial commit

This commit is contained in:
i2p
2026-08-27 11:04:21 -06:00
commit 07a49a8c50
937 changed files with 196477 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
namespace EladitosCrypter
{
using System;
using System.IO;
using System.Runtime.CompilerServices;
public class UploadFile
{
// Methods
public UploadFile()
{
this.ContentType = "application/octet-stream";
}
// Properties
public string ContentType { get; set; }
public string Filename { get; set; }
public string Name { get; set; }
public System.IO.Stream Stream { get; set; }
}
}