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

📄 transfileinfo.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Core.P2P
{
    using System;

    public abstract class TransFileInfo
    {
        private long _completedSize;
        protected long _fileSize;
        protected string _first100MMd5;
        protected string _id;
        protected string _localFilePath;
        private string _sourceFileName;
        protected long _sourceSID;

        protected TransFileInfo()
        {
        }

        public long CompletedSize
        {
            get
            {
                return this._completedSize;
            }
            set
            {
                this._completedSize = value;
            }
        }

        public long FileSize
        {
            get
            {
                return this._fileSize;
            }
            set
            {
                this._fileSize = value;
            }
        }

        public string First100MMd5
        {
            get
            {
                return this._first100MMd5;
            }
            set
            {
                this._first100MMd5 = value;
            }
        }

        public string Id
        {
            get
            {
                return this._id;
            }
            set
            {
                this._id = value;
            }
        }

        public string LocalFilePath
        {
            get
            {
                return this._localFilePath;
            }
            set
            {
                this._localFilePath = value;
            }
        }

        public string SourceFileName
        {
            get
            {
                return this._sourceFileName;
            }
            set
            {
                this._sourceFileName = value;
            }
        }

        public long SourceSID
        {
            get
            {
                return this._sourceSID;
            }
            set
            {
                this._sourceSID = value;
            }
        }
    }
}

⌨️ 快捷键说明

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