mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
12 lines
277 B
Go
12 lines
277 B
Go
// Code generated from Pkl module `transactions`. DO NOT EDIT.
|
|
package transactions
|
|
|
|
// Base class for all proposals
|
|
type Proposal struct {
|
|
// The title of the proposal
|
|
Title string `pkl:"title"`
|
|
|
|
// The description of the proposal
|
|
Description string `pkl:"description"`
|
|
}
|