8 lines
138 B
Go
8 lines
138 B
Go
package arn
|
|
|
|
// Draftable describes a type where drafts can be created.
|
|
type Draftable interface {
|
|
GetIsDraft() bool
|
|
SetIsDraft(bool)
|
|
}
|