24 lines
603 B
C#
24 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public class Notification
|
|
{
|
|
public Notification(int entityId, int userId, string action, Guid entityType)
|
|
{
|
|
EntityId = entityId;
|
|
UserId = userId;
|
|
Action = action;
|
|
EntityType = entityType;
|
|
}
|
|
|
|
public int EntityId { get; private set; }
|
|
public int UserId { get; private set; }
|
|
public string Action { get; private set; }
|
|
public Guid EntityType { get; private set; }
|
|
}
|
|
}
|