public static FollowObject fromDynamic(dynamic folData)
        {
            FollowObject fol = new FollowObject()
            {
                User = UserObject.fromDynamicSlim(folData.user),
                FollowingSince = folData.following_since
            };

            return fol;
        }
Example #2
0
        public static FollowObject fromDynamic(dynamic folData)
        {
            FollowObject fol = new FollowObject()
            {
                User           = UserObject.fromDynamicSlim(folData.user),
                FollowingSince = folData.following_since
            };

            return(fol);
        }