mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +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"`
|
|
}
|