nim-chat-poc/src/chat_sdk/message_info.nim

13 lines
236 B
Nim
Raw Normal View History

2025-10-15 13:48:26 -07:00
import crypto
type
VerifabilityProp* = enum
Verified, Unverified
type Property*[T] = object
value*: T
verifiability*: VerifabilityProp
type MessageInfo* = object
sender*: Property[PublicKey]
timestamp*: Property[uint64]