namespace PSC.Blazor.Components.MarkdownEditor.Models { /// /// File Entry model /// public class FileEntry { /// /// Gets the file-entry id. /// public int Id { get; } /// /// Returns the last modified time of the file. /// public DateTime LastModified { get; set; } /// /// Returns the name of the file. /// public string Name { get; set; } /// /// Returns the size of the file in bytes. /// public long Size { get; set; } /// /// Returns the MIME type of the file. /// public string Type { get; set; } /// /// Provides a way to tell the location of the uploaded file or image. /// public string UploadUrl { get; set; } /// /// Provides a way to tell if any error happened. /// public string ErrorMessage { get; set; } /// /// Gets or sets the content base64. /// public string ContentBase64 { get; set; } } }