⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fileinfo.cs

📁 will let you know the result once they replied will let you know the result once they replied
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace MyOffice.Models
{

    [Serializable()]
    public class FileInfo
    {

        private int fileID;
        private FileTypeInfo fileType;
        private string fileName = String.Empty;
        private string remark = String.Empty;
        private string fileOwner = String.Empty;
        private DateTime createDate;
        private int parentid;
        private string filePath = String.Empty;
        private int ifDelete;



        public FileInfo() { }




        public int FileID
        {
            get { return this.fileID; }
            set { this.fileID = value; }
        }




        public FileTypeInfo FileType
        {
            get { return this.fileType; }
            set { this.fileType = value; }
        }




        public string FileName
        {
            get { return this.fileName; }
            set { this.fileName = value; }
        }


        public string Remark
        {
            get { return this.remark; }
            set { this.remark = value; }
        }


        public string FileOwner
        {
            get { return this.fileOwner; }
            set { this.fileOwner = value; }
        }


        public DateTime CreateDate
        {
            get { return this.createDate; }
            set { this.createDate = value; }
        }


        public int Parentid
        {
            get { return this.parentid; }
            set { this.parentid = value; }
        }


        public string FilePath
        {
            get { return this.filePath; }
            set { this.filePath = value; }
        }


        public int IfDelete
        {
            get { return this.ifDelete; }
            set { this.ifDelete = value; }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -