1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LogoForceTestApp.Modules.MainModule.Models
- {
- public class LocalFile : BindableBase
- {
- public string FileNum { get; set; }
- public string Edition { get; set; }
- public string Date { get; set; }
- public string Type { get; set; }
- public string People { get; set; }
- public string Name { get; set; }
- public string Process { get; set; }
- public string WorkTime { get; set; }
- }
- public class LocalFile2 : BindableBase
- {
- public string Num { get; set; }
- public string MaterialNum { get; set; }
- public string MaterialName { get; set; }
- public string Count { get; set; }
- public string Unit { get; set; }
- }
- public class LocalFile3 : BindableBase
- {
- public string Equipment { get; set; }
- public string Before { get; set; }
- public string Inn { get; set; }
- public string After { get; set; }
- public string LookOut { get; set; }
- }
- public class GenaralFile
- {
- public string ProductName { get; set; }
- public List<LocalFile> FileInfos { get; set; }
- public List<LocalFile2> FileInfos2 { get; set; }
- public List<LocalFile3> FileInfos3 { get; set; }
- }
- }
|