12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace PRSDesktop
- {
- public class JobDocumentSetDescriptionBlock
- {
- public Guid ID { get; private set; }
- public String Code { get; private set; }
- public String Description { get; private set; }
- public String[] Tags { get; private set; }
- public JobDocumentSetDescriptionBlock(Guid id, String code, String description, String[] tags)
- {
- ID = id;
- Code = code;
- Description = description;
- Tags = tags;
- }
- }
- }
|