8 lines
138 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// Draftable describes a type where drafts can be created.
type Draftable interface {
GetIsDraft() bool
SetIsDraft(bool)
}