namespace Content.Shared.Store;
///
/// Event of successfully finishing purchase in store (.
///
/// EntityUid on which store is placed.
/// ListingItem that was purchased.
[ByRefEvent]
public readonly record struct StoreBuyFinishedEvent(
EntityUid Buyer,
EntityUid StoreUid,
ListingDataWithCostModifiers PurchasedItem
);