Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

DocumentTypes.cs 184B

123456789101112
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Novacode
  5. {
  6. public enum DocumentTypes
  7. {
  8. Document,
  9. Template
  10. }
  11. }