Files
OurUmbraco/uForum/Models/TopicSaveModel.cs
T

27 lines
579 B
C#
Raw Normal View History

2015-01-26 13:13:06 +01:00
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 TopicSaveModel
2015-01-26 13:13:06 +01:00
{
[DataMember(Name = "body")]
public string Body { get; set; }
[DataMember(Name = "forum")]
public int Forum { get; set; }
[DataMember(Name = "title")]
public string Title { get; set; }
2015-02-05 21:05:04 +01:00
[DataMember(Name = "version")]
public int Version { get; set; }
2015-01-26 13:13:06 +01:00
}
}