5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
|
import Party from "../../entities/Party";
|
||
|
|
||
|
export default interface AdminPartiesViewModel {
|
||
|
parties: Array<Party>
|
||
|
}
|