yavsc/yavscModel/Blogs/FindBlogEntryFlags.cs

16 lines
236 B
C#

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