using System; namespace Microsoft.Samples.AppUpdater { public class NotifyUpdateFileInfoEventArgs : EventArgs { private int _FileTotal; private int _CurrentFile; private string _FileName; public int FileTotal { get { return _FileTotal; } set { _FileTotal = value; } } public int CurrentFile { get { return _CurrentFile; } set { _CurrentFile = value; } } public string FileName { get { return _FileName; } set { _FileName = value; } } } }