yavsc/NpgsqlBlogProvider/DataModel/BlogEntryCollection.cs

13 lines
214 B
C#

using System;
using System.Configuration;
using System.Configuration.Provider;
using System.Collections.Generic;
namespace Npgsql.Web.Blog.DataModel
{
public class BlogEntryCollection : List<BlogEntry>
{
}
}