using Connected.Data; namespace Connected.Logistics.Stock.Aggregations; public interface IStockAggregation : IPrimaryKey { long Stock { get; init; } DateTimeOffset Date { get; init; } float Quantity { get; init; } }