Baka_MPlayer.Updates.UpdateInfo.UpdateInfo C# (CSharp) Method

UpdateInfo() public method

public UpdateInfo ( bool updateAvailable, string latestVer, string date, string bugFixes )
updateAvailable bool
latestVer string
date string
bugFixes string
        public UpdateInfo(bool updateAvailable, string latestVer, string date, string bugFixes)
        {
            this.UpdateAvailable = updateAvailable;
            this.LatestVer = latestVer;
            this.Date = date;
            this.BugFixes = bugFixes;
        }
UpdateInfo