Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • develop protected
  • ITAFFT_v2024a
  • VA_v2023b
  • VA_v2023a
  • VA_v2022a
  • before_cmake_rework
  • v2021.a
  • v2020.a
  • v2019.a
  • v2018.b
  • v2018.a
  • v2017.d
  • v2017.c
  • v2017.b
  • v2017.a
  • v2016.a
17 results

ITAFFT.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PIDEventArgs.cs 761 B
    using Coscine.Configuration;
    using Coscine.Database.DataModel;
    using Newtonsoft.Json.Linq;
    
    namespace Coscine.Action.EventArgs
    {
        public class PIDEventArgs : ActionEventArgs
        {
            public IConfiguration Configuration { get; set; }
            public User Requester { get; set; }
            public Resource Resource { get; set; }
            public Project Project { get; set; }
            public JObject Placeholder { get; set; }
            public bool SentCopy { get; set; }
    
            public PIDEventArgs(IConfiguration configuration, object[] args) : base(args)
            {
                Configuration = configuration;
            }
    
            public PIDEventArgs(IConfiguration configuration) : this(configuration, System.Array.Empty<object>())
            {
            }
        }
    }