Exemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="UserKink"/> class.
        /// </summary>
        /// <param name="user">The user.</param>
        /// <param name="kink">The user's kink.</param>
        public UserKink(User user, Kink kink)
        {
            this.User = user;
            this.Kink = kink;

            this.Preference = KinkPreference.NoPreference;
        }
Exemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="UserKink"/> class.
        /// </summary>
        /// <param name="user">The user.</param>
        /// <param name="kink">The user's kink.</param>
        public UserKink([NotNull] User user, [NotNull] Kink kink)
        {
            this.User = user;
            this.Kink = kink;

            this.Preference = KinkPreference.NoPreference;
        }