Files
OurUmbraco/NotificationsWeb/Models/ForumTopicSubscriber.cs
T

20 lines
422 B
C#
Raw Normal View History

2015-02-17 10:39:39 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Umbraco.Core.Persistence;
namespace NotificationsWeb.Models
{
[TableName("forumTopicSubscribers")]
2015-02-17 10:55:11 +01:00
public class ForumTopicSubscriber
2015-02-17 10:39:39 +01:00
{
[Column("topicId")]
public int TopicId { get; set; }
[Column("memberID")]
public int MemberId { get; set; }
}
}