using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 文件格式
///
public enum eFileFormat
{
///
/// 未知
///
UnKnown=-1,
///
/// 图片文档
///
Image = 1,
///
/// Word文档
///
Word = 2,
///
/// Excel文档
///
Excel = 3,
///
/// Pdf文档
///
Pdf = 4,
///
/// 音频
///
Audio= 5,
///
/// 视频
///
Video = 6
}
}