namespace xStorageService.Models { public partial class XStorageConfiguration { /// /// Base Path of Identity Host Server /// /// public string IdentityAuthority { get; set; } /// /// Base Path of Host Server /// /// public string Authority { get; set; } /// /// Root Directory Of File Storage /// /// public string RootFolder { get; set; } /// /// Base Root of Usable Folder for Files /// /// public string BaseFolder { get; set; } /// /// Storage Folder Label /// /// public string Storage { get; set; } /// /// Temp Folder Label /// /// public string Temp { get; set; } /// /// Thumb Folder Label /// /// public string Thumb { get; set; } /// /// Uploads Folder Label /// /// public string Uploads { get; set; } /// /// Widgets Folder Label /// /// public string Widgets { get; set; } /// /// Images Folder Label /// /// public string Image { get; set; } /// /// Audios Folder Label /// /// public string Audio { get; set; } /// /// Videos Folder Label /// /// public string Video { get; set; } /// /// Documents Folder Label /// /// public string Document { get; set; } /// /// new Files Prefix /// /// public string FilePrefix { get; set; } /// /// Thumb Files Prefix /// /// public string ThumbPrefix { get; set; } /// /// Thumbnail File Sizes /// /// public int ThumbSize { get; set; } /// /// Thumbnail File Quality /// /// public int ThumbQuality { get; set; } /// /// Max File Size /// /// public long MaxFileSize { get; set; } } }