JobDocumentSetDescriptionBlock.cs 569 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace PRSDesktop
  4. {
  5. public class JobDocumentSetDescriptionBlock
  6. {
  7. public Guid ID { get; private set; }
  8. public String Code { get; private set; }
  9. public String Description { get; private set; }
  10. public String[] Tags { get; private set; }
  11. public JobDocumentSetDescriptionBlock(Guid id, String code, String description, String[] tags)
  12. {
  13. ID = id;
  14. Code = code;
  15. Description = description;
  16. Tags = tags;
  17. }
  18. }
  19. }