2023-01-02 20:02:50 +01:00
|
|
|
package protocol
|
|
|
|
|
2023-11-10 13:48:47 +01:00
|
|
|
// DefaultFieldValue represents a default value for a field identified in a protocol by its name.
|
2023-01-02 20:02:50 +01:00
|
|
|
type DefaultFieldValue struct {
|
|
|
|
FieldRef string
|
|
|
|
Value string
|
|
|
|
}
|