Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1.     public class AffiliatesSignUpNotificationEmailModel  : Koko, IEmailModel{
  2.         public CompanyEmailModel Company { get; set; }
  3.         }
  4.  
  5.     public class CompanyEmailModel {
  6.         public string Name { get; set; }
  7.         public string Domain { get; set; }
  8.         public string Email { get; set; }
  9.         public string Phone { get; set; }
  10.     }
  11.  
  12.     public class Koko {
  13.         public RegistrationNotificationUserEmailModel User { get; set; }
  14.         public string Password { get; set; }
  15.         public string Domain { get; set; }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement