mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 12:30:59 +00:00
Added Friendship Created a namespace for models Signed-off-by: RosimInc <rosim_inc@hotmail.com>
20 lines
310 B
C#
20 lines
310 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
public class PostGenerator
|
|
{
|
|
public Status generateStatus(/*put stuff here*/)
|
|
{
|
|
//and here...
|
|
return null;
|
|
}
|
|
|
|
public Headline generateHeadline(/*put stuff here*/)
|
|
{
|
|
//and here...
|
|
return null;
|
|
}
|
|
}
|
|
}
|