haxeui/haxeui-core

View on GitHub
haxe/ui/styles/elements/ImportElement.hx

Summary

Maintainability
Test Coverage
package haxe.ui.styles.elements;

class ImportElement {
    public var url:String;

    public function new(url:String) {
        this.url = url;
    }
}