using System.IO;
using System.Web;
namespace Bootstrap.Admin.Models
{
///
///
///
public class ProfilesModel : NavigatorBarModel
{
///
/// 获得/设置 头像文件大小
///
public long Size { get; private set; }
///
///
///
///
public ProfilesModel(string url) : base(url)
{
var fileName = HttpContext.Current.Server.MapPath(Icon);
if (File.Exists(fileName))
{
Size = new FileInfo(fileName).Length;
}
}
}
}