Advertisement
Guest User

Untitled

a guest
Jul 11th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.32 KB | None | 0 0
  1. data class Field(
  2.         val Name: String,
  3.         val DisplayName: String? = null,
  4.         val InputType: FieldInputType,
  5.         private val ValidationRegEx: String? = null,
  6.         val IsRequired: Boolean,
  7.         var IsEnabled: Boolean,
  8.         var Value: String? = null,
  9.         val Options: List<Option>? = null
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement