You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
660 B
C#

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Txgy.EWS.Client.Models
{
public class FileInfoModel : BindableBase
{
public string Index { get; set; }
public string FileName { get; set; }
public string UploadTime { get; set; }
public ICommand DeleteCommand { get; set; }
public string FullPath { get; set; }
private string _state;
public string State
{
get { return _state; }
set { SetProperty(ref _state, value); }
}
}
}