9 lines
104 B
Go
9 lines
104 B
Go
|
package types
|
||
|
|
||
|
type LawsuitType uint
|
||
|
|
||
|
const (
|
||
|
Individual LawsuitType = 0
|
||
|
Company LawsuitType = 1
|
||
|
)
|