github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/Decentralized-Energy-Composer-master/angular-app/src/app/org.hyperledger.composer.system.ts (about)

     1  // export namespace org.hyperledger.composer.system{
     2     export abstract class Asset {
     3     }
     4     export abstract class Participant {
     5     }
     6     export abstract class Transaction {
     7        transactionId: string;
     8        timestamp: Date;
     9     }
    10     export abstract class Event {
    11        eventId: string;
    12        timestamp: Date;
    13     }
    14  // }