/** * Constructor used by the implementation * * @param SocialNetwork of the profile * @param ProfileUrl of the user * @since V2.0 */ public ContactSocial(ContactSocialNetwork socialNetwork, string profileUrl) : base() { this.SocialNetwork = SocialNetwork; this.ProfileUrl = ProfileUrl; }
/** * Set the social network * * @param SocialNetwork of the profile * @since V2.0 */ public void SetSocialNetwork(ContactSocialNetwork SocialNetwork) { this.SocialNetwork = SocialNetwork; }