Agent.cs 351 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BuzuevaDemo
  7. {
  8. public partial class Agent
  9. {
  10. private string titletype;
  11. public string TitleType
  12. {
  13. get { return titletype; }
  14. set { titletype = value; }
  15. }
  16. }
  17. }