As the question asks, is it semantically correct to do something like this?
<ul class="my-class">
<li>
<ul>
<!-- Notice here the nested my-class-->
<li class="my-class my-other-class">Something</li>
</ul>
</li>
<li>Something else</li>
</ul>