internal static Feed BuildFeedFromValueSet(ValueSet values) { Feed built = new Feed( feedUri: values.GetURI(nameof(Uri)), title: values.GetString(nameof(Title)), description: values.GetString(nameof(Description)), author: values.GetString(nameof(Author)), imageUri: values.GetURI(nameof(ImageUri))); return(built); }