using System; namespace Microsoft.Samples.AppUpdater { [Serializable] public class Resource { private string _Name; private string _Url; private string _FilePath; private bool _IsFolder; private DateTime _LastModified; private bool _AddedAtRuntime; public string Name { get { return _Name; } set { _Name = value; } } public string Url { get { return _Url; } set { _Url = value; } } public string FilePath { get { return _FilePath; } set { _FilePath = value; } } public bool IsFolder { get { return _IsFolder; } set { _IsFolder = value; } } public DateTime LastModified { get { return _LastModified; } set { _LastModified = value; } } public bool AddedAtRuntime { get { return _AddedAtRuntime; } set { _AddedAtRuntime = value; } } } }