RosimInc 95caf44538 Removed unneeded files
Added Friendship
Created a namespace for models

Signed-off-by: RosimInc <rosim_inc@hotmail.com>
2015-08-12 11:03:39 -04:00

12 lines
174 B
C#

using System.Collections.Generic;
namespace DeathBook.Model
{
public class Post
{
private string text;
private string title;
private string date;
}
}