12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class PrinterDrives
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; private set; }
- public DateTime UpdateTime { get; set; }
- public bool IsDeleted { get; set; }
- /// <summary>
- /// Gets or sets the printer drive name.
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Gets or sets the printer drive file token.
- /// </summary>
- public string FileToken { get; set; }
- /// <summary>
- /// Gets or sets the printer drive file size.
- /// </summary>
- public int Size { get; set; }
- /// <summary>
- /// Gets or sets the manufacturer.
- /// </summary>
- public string Manufacturer { get; set; }
- /// <summary>
- /// Gets or sets the drive version.
- /// </summary>
- public string Version { get; set; }
- /// <summary>
- /// Gets or sets the supported printer models
- /// </summary>
- public IList<string> SupportedPrinterModels { get; set; }
- /// <summary>
- /// Gets or sets the supported platform, such as win7,win10.
- /// </summary>
- public string SupportedPlatform { get; set; }
- }
- }
|