using System; using System.Configuration; using System.Collections.Generic; namespace Yavsc.Model.Blogs { /// /// Find blog entry flags. /// public enum FindBlogEntryFlags : byte { /// /// The match title. /// MatchTitle = 1, /// /// The content of the match. /// MatchContent = 2, /// /// The name of the match user. /// MatchUserName = 4, /// /// The match invisible. /// MatchInvisible = 8 } }