yavsc/yavscModel/Blogs/BlogEntry.cs
Paul Schneider 1f64b48966 M$ AspNet.WebApi 2.2
Testé avec mono current sous Debian Sid:

l'import AspNet.WebApi 2.2
2016-01-04 01:40:41 +01:00

32 lines
523 B
C#

using System;
using System.Configuration;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using Yavsc.Model.Circles;
namespace Yavsc.Model.Blogs
{
/// <summary>
/// Blog entry.
/// </summary>
public class BlogEntry : BasePost {
string content;
/// <summary>
/// Gets or sets the content.
/// </summary>
/// <value>The content.</value>
[DisplayName("Corps du billet")]
public string Content {
get {
return content;
}
set {
content = value;
}
}
}
}