feat: initial commit

This commit is contained in:
Thom Lamb
2026-06-23 11:18:54 -05:00
parent fc3ce9a074
commit 1bb980f070
790 changed files with 149255 additions and 218 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Strata.Analytics.Models
{
public class PublicationEvent
{
public DateTime RequestDate { get; set; }
public string RequestedBy { get; set; }
public IEnumerable<int> StandardDataSourceIds { get; set; }
public IEnumerable<int> StrataIds { get; set; }
}
}