github.com/hyperledger/aries-framework-go@v0.3.2/pkg/store/did/models.go (about)

     1  /*
     2  Copyright SecureKey Technologies Inc. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  package did
     8  
     9  // Record model.
    10  type Record struct {
    11  	Name string `json:"name,omitempty"`
    12  	ID   string `json:"id,omitempty"`
    13  }