ReleaseFile.cs 893 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Common
  5. {
  6. using System;
  7. public class ReleaseFile
  8. {
  9. private string _FileName = "";
  10. private string _ReleaseDate = "";
  11. private string _Size = "";
  12. private string _Version = "";
  13. public string FileName
  14. {
  15. get
  16. {
  17. return this._FileName;
  18. }
  19. set
  20. {
  21. this._FileName = value;
  22. }
  23. }
  24. public string ReleaseDate
  25. {
  26. get
  27. {
  28. return this._ReleaseDate;
  29. }
  30. set
  31. {
  32. this._ReleaseDate = value;
  33. }
  34. }
  35. public string Size
  36. {
  37. get
  38. {
  39. return this._Size;
  40. }
  41. set
  42. {
  43. this._Size = value;
  44. }
  45. }
  46. public string Version
  47. {
  48. get
  49. {
  50. return this._Version;
  51. }
  52. set
  53. {
  54. this._Version = value;
  55. }
  56. }
  57. }
  58. }