2015-08-16 23:38:23 -04:00

15 lines
262 B
C#

using System.Collections.Generic;
namespace DeathBook.Model
{
public class Status : Post
{
private string _text;
public string Text
{
get { return _text; }
set { _text = value; }
}
}
}