blob: 0d5a70baa2bddafd343aed7bf9a38ee279a5fbff [file] [log] [blame]
Sapan Bhatiace657e62017-04-21 14:20:41 +02001option name = "exampleservice";
2option verbose_name = "Example Service";
3
4message ExampleService (Service){
5 required string service_message = 1 [help_text = "Service Message to Display", max_length = 254, null = False, db_index = False, blank = False];
6}
7
8
9message ExampleTenant (TenantWithContainer){
10 option name = "exampletenant";
11 option verbose_name = "Example Tenant";
12 required string tenant_message = 1 [help_text = "Tenant Message to Display", max_length = 254, null = False, db_index = False, blank = False];
13}