yavsc/yavscModel/Blogs/BlogEntryCollection.cs

12 lines
194 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
using Yavsc.Model.Blogs;
2014-07-16 20:35:03 +02:00
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.Blogs
2014-07-16 20:35:03 +02:00
{
public class BlogEntryCollection : List<BlogEntry>
{
}
}