Files
Umbraco-CMS/src/Umbraco.Core/Models/Notification.cs
2022-02-24 09:24:56 +01:00

21 lines
537 B
C#

using System;
namespace Umbraco.Cms.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; }
}
}