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