blob: 1d12ca60d40ae2fd3100a389181801028201c018 [file] [log] [blame]
aPiecekbfb7cb12023-04-13 13:36:20 +02001module modconfig {
2 namespace "urn:yanglint:modconfig";
3 prefix mc;
4
5 container mcc {
6 leaf lft {
7 type string;
8 config true;
9 mandatory true;
10 }
11 leaf lff {
12 type string;
13 config false;
14 mandatory true;
15 }
16 }
17}