Skip to content

Commit

Permalink
Make MemberContext and MGMContext CordaSerializable
Browse files Browse the repository at this point in the history
  • Loading branch information
YashNabar committed Nov 15, 2023
1 parent 466978c commit cf7ee82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package net.corda.v5.membership;

import net.corda.v5.base.annotations.CordaSerializable;
import net.corda.v5.base.types.LayeredPropertyMap;

/**
Expand Down Expand Up @@ -32,4 +33,5 @@
*
* @see LayeredPropertyMap for further information on the properties and functions.
*/
@CordaSerializable
public interface MGMContext extends LayeredPropertyMap {}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package net.corda.v5.membership;

import net.corda.v5.base.annotations.CordaSerializable;
import net.corda.v5.base.types.LayeredPropertyMap;

/**
Expand Down Expand Up @@ -32,4 +33,5 @@
*
* @see LayeredPropertyMap For further information on the properties and functions.
*/
@CordaSerializable
public interface MemberContext extends LayeredPropertyMap {}

0 comments on commit cf7ee82

Please sign in to comment.