UNPKG
component-dbs-core
Version:
latest (1.0.1)
1.0.1
1.0.0
DTO objects shared among device backend
bitbucket.org/npco_dev/component-dbs-core
component-dbs-core
/
src
/
transaction
/
transactionProjectionEventDto.ts
10 lines
(9 loc)
•
215 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
TransactionDto
}
from
"./transactionDto"
;
export
class
TransactionProjectionEventDto
{
/** *
@param
payload The event payload */
constructor
(
public
readonly
payload
:
TransactionDto
,
) {} }