Newer
Older
Correlator / PipeGallery / Model / FileInfo.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace PipeGallery.Model
{
    public class FileInfo : ModelBase
    {
       
        public FileInfo()
        {

        }

        // 序号
        public int Order { get; set; }

        // 文件名
        public string FileName { get; set; }
        // 负责人
        public string PersonLiable { get; set; }

        // 完整路径
        public string FullPath { get; set; }

        // 文件尺寸,单位为MB
        public double FileSize { get; set; }

        // 创建时间
        public DateTime CreationTimeUtc { get; set; }

        private bool _isSelected;
        //是否选中
        public bool IsSelected
        {
            get
            {
                return _isSelected;
            }
            set
            {
                if (_isSelected != value)
                {
                    _isSelected = value;

                    RaisePropertyChanged("IsSelected");
                }
            }
        }

    }
}