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.

10 lines
340 B

  1. namespace Transfast.Model.Compliance
  2. {
  3. public class ComplianceResponse
  4. {
  5. public bool IsPreAml { get; set; }
  6. public string Accumulation { get; set; }
  7. public bool SourceOfFundsRequired { get; set; }
  8. public bool IsSsnRequired { get; set; }
  9. public bool IsSecondIdRequired { get; set; }
  10. }
  11. }