Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. public class DocumentSynchronizationTask
  2. {
  3. public IEnumerable<PersonInfo> Persons { get; set; }
  4.  
  5. public DateTime DocStartDate { get; set; }
  6.  
  7. public DateTime DocEndDate { get; set; }
  8.  
  9. public IEnumerable<int> DocumentIds { get; set; }
  10.  
  11. public IEnumerable<DocumentType> DocumentTypes { get; set; }
  12.  
  13. public Guid? TaskId { get; set; }
  14.  
  15. public Guid UserId { get; set; }
  16. }
  17.  
  18.  
  19. // inner model
  20. public class PersonInfo
  21. {
  22. public Guid? PersonId { get; set; }
  23. public string TaxId { get; set; }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement