ScriptInfo.cs 406 B

123456789101112131415161718
  1. using System;
  2. namespace ReportDataResumeTool.AfterSales
  3. {
  4. internal class ScriptInfo: TrackableEntity
  5. {
  6. public string Name { get; set; }
  7. public string Version { get; set; }
  8. public string Description { get; set; }
  9. public string FileToken { get; set; }
  10. public ScriptInfo(string id, DateTime createTime) : base(id, createTime)
  11. {
  12. }
  13. }
  14. }