Files
OurUmbraco/uForum/Models/TopicViewModel.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
498 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 = "topic")]
public class TopicViewModel
{
[DataMember(Name = "body")]
public string Body { get; set; }
[DataMember(Name = "forum")]
public int Forum { get; set; }
[DataMember(Name = "title")]
public string Title { get; set; }
}
}