using Core.Enumerations;
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 MediaTypes MediaType { get; private set; }
    /// 
    /// 
    /// 
    /// 
    /// 
    /// 
    public FileSignature(List signatures, string contentType, MediaTypes mediaType) {
      Signatures = signatures;
      ContentType = contentType;
      MediaType = mediaType;
    }
  }
}