yavsc/NpgsqlBlogProvider/DataModel/FindBlogEntryFlags.cs

16 lines
281 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Configuration;
using System.Configuration.Provider;
using System.Collections.Generic;
namespace Npgsql.Web.Blog.DataModel
{
public enum FindBlogEntryFlags : byte {
MatchTitle = 1,
MatchContent = 2,
MatchUserName = 4,
MatchInvisible = 8
}
}