41 lines
920 B
C#
41 lines
920 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FileSecurityService {
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
internal class FileSignature {
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<string> Signatures { get; private set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ContentType { get; private set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public FileCategory FileCategory { get; private set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="signatures"></param>
|
|
/// <param name="contentType"></param>
|
|
/// <param name="fileCategory"></param>
|
|
public FileSignature(List<string> signatures, string contentType, FileCategory fileCategory) {
|
|
Signatures = signatures;
|
|
ContentType = contentType;
|
|
FileCategory = fileCategory;
|
|
}
|
|
}
|
|
}
|