oqtane.framework/Oqtane.Shared/Models/File.cs
2020-04-03 17:18:33 -04:00

27 lines
788 B
C#

using System;
using Oqtane.Interfaces;
namespace Oqtane.Models
{
public class File : IAuditable
{
public int FileId { get; set; }
public int FolderId { get; set; }
public string Name { get; set; }
public string Extension { get; set; }
public int Size { get; set; }
public int ImageHeight { get; set; }
public int ImageWidth { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
public string DeletedBy { get; set; }
public DateTime? DeletedOn { get; set; }
public bool IsDeleted { get; set; }
public Folder Folder { get; set; }
}
}