using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FileSecurityService {
///
///
///
internal class FileSignature {
///
///
///
public List Signatures { get; private set; }
///
///
///
public string ContentType { get; private set; }
///
///
///
public FileCategory FileCategory { get; private set; }
///
///
///
///
///
///
public FileSignature(List signatures, string contentType, FileCategory fileCategory) {
Signatures = signatures;
ContentType = contentType;
FileCategory = fileCategory;
}
}
}