fileinfo.cs

来自「will let you know the result once they r」· CS 代码 · 共 98 行

CS
98
字号
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 + =
减小字号Ctrl + -
显示快捷键?