18 lines
437 B
XML
18 lines
437 B
XML
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||
|
<!--
|
||
|
NOTE:
|
||
|
- <users> tag represents list of users and contains one or more <user> tag
|
||
|
- <user> tag represent one user and contains <id> and <name> tag
|
||
|
id: Email id of the user.
|
||
|
name: Name of the user.
|
||
|
EXAMPLE:
|
||
|
<user>
|
||
|
<id>harindra.chaudhary@seclore.com</id>
|
||
|
<name>Harindra Chaudhary</name>
|
||
|
</user>
|
||
|
-->
|
||
|
<user-master>
|
||
|
<users>
|
||
|
</users>
|
||
|
</user-master>
|