| 123456789101112131415161718192021222324 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.DownLoad
- {
- public class DownLoadEntity : ObservableObject
- {
- public string DownLoadUrl { get; set; }
- public string NewFileFullName { get; set; }
- public string FileName { get; set; }
- public string Body { get; set; } = null;
- private int _state;
- /// <summary>
- /// 0等待、-1失败,1下载成功,2下载失败
- /// </summary>
- public int state { get => _state; set => SetProperty(ref _state, value); }
- }
- }
|