yavsc/yavscModel/Blogs/FindBlogEntryFlags.cs

15 lines
236 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Configuration;
using System.Collections.Generic;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.Blogs
2014-07-16 20:35:03 +02:00
{
public enum FindBlogEntryFlags : byte {
MatchTitle = 1,
MatchContent = 2,
MatchUserName = 4,
MatchInvisible = 8
}
}