using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel { public class FileUploadView { public Guid FileID { get; set; } public string FileName { get; set; } public string FileUrl { get; set; } public string TableName { get; set; } public Guid? FormID { get; set; } } }