Files
OurUmbraco/uForum/Models/CommentViewModel.cs
T
ploug@umbraco.dk 56a2ace7d2 Initial commit of our WIP
This is very likely break the dev site
2015-01-26 13:13:06 +01:00

24 lines
501 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace uForum.Models
{
[DataContract( Name="comment")]
public class CommentViewModel
{
[DataMember( Name = "body")]
public string Body { get; set; }
[DataMember(Name = "topic")]
public int Topic { get; set; }
[DataMember(Name = "parent")]
public int Parent { get; set; }
}
}