Select Git revision
-
Marcel Nellesen authoredMarcel Nellesen authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
NotificationParameterObject.cs 854 B
using Coscine.Database.DataModel;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Coscine.Api.NotificationBus
{
public class NotificationParameterObject
{
public List<User> Users { get; set; }
public string Action { get; set; }
public string ProjectId { get; set; }
public JObject Args { get; set; }
public string Href { get; set; }
public NotificationParameterObject()
{
}
public NotificationParameterObject(string action, List<User> users, string projectId, JObject args, string href)
{
Action = action;
Users = users;
ProjectId = projectId;
Args = args;
Href = href;
}
}
}