1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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;
- }
- }
- }
- }
|