Files
crypters-scode/C# (MCRYPT/EladitosCrypter/UploadFile.cs
T
2026-08-27 11:04:21 -06:00

26 lines
493 B
C#

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; }
}
}