29 lines
403 B
C#
29 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FileSecurityService {
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public enum FileCategory {
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Document,
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Image,
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Video
|
|
}
|
|
}
|