mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import { Timestamps, Uuid } from '@standardnotes/domain-core'
|
|
|
|
export interface KeySystemAssociationProps {
|
|
itemUuid: Uuid
|
|
keySystemIdentifier: string
|
|
timestamps: Timestamps
|
|
}
|