yavsc/NpgsqlBlogProvider/DataModel/BlogEntryCollection.cs

12 lines
214 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 class BlogEntryCollection : List<BlogEntry>
{
}
}