diff --git a/FlickrNet/Enums.cs b/FlickrNet/Enums.cs index 27077059..ff30df5c 100644 --- a/FlickrNet/Enums.cs +++ b/FlickrNet/Enums.cs @@ -306,5 +306,30 @@ public enum PermissionAddMeta Everybody = 3 } + /// + /// An enumeration of photo styles. + /// + [Serializable] + public enum Style + { + /// + /// Black and white. + /// + BlackAndWhite = 0, + /// + /// Shallow depth of field. + /// + DepthOfField = 1, + + /// + /// Minimalist. + /// + Minimalism = 2, + + /// + /// Patterns. + /// + Pattern = 3 + } } diff --git a/FlickrNet/PhotoSearchOptions.cs b/FlickrNet/PhotoSearchOptions.cs index 767f156d..c8da3c7e 100644 --- a/FlickrNet/PhotoSearchOptions.cs +++ b/FlickrNet/PhotoSearchOptions.cs @@ -364,6 +364,11 @@ internal string SortOrderString /// public ICollection ColorCodes { get; set; } + /// + /// A collection of styles the search results will be filtered against. + /// + public ICollection