You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
412 B

1 year ago
  1. namespace Common.Model.Reward
  2. {
  3. public class ResponsingAgentDetail
  4. {
  5. public string agentId { get; set; }
  6. public string agentName { get; set; }
  7. public string agentState { get; set; }
  8. public string agentCity { get; set; }
  9. public string agentAddress { get; set; }
  10. public string agentZip { get; set; }
  11. public string agentPhone1 { get; set; }
  12. }
  13. }