ReadableWritable interface added

This commit is contained in:
Pavel Merzlyakov 2023-09-11 20:09:11 +03:00
parent 74717f3b79
commit 1bfc33e774
1 changed files with 5 additions and 0 deletions

View File

@ -94,3 +94,8 @@ type WritableClass interface {
Class
Writable
}
type ReadableWritable interface {
Readable
Writable
}