yavsc/yavscModel/Blogs/FindBlogEntryFlags.cs

16 lines
236 B
C#

12 years ago
using System;
using System.Configuration;
using System.Collections.Generic;
11 years ago
namespace Yavsc.Model.Blogs
12 years ago
{
public enum FindBlogEntryFlags : byte {
MatchTitle = 1,
MatchContent = 2,
MatchUserName = 4,
MatchInvisible = 8
}
}