gauthenticator/src/gauth-window.vala

12 lines
274 B
Vala

namespace GAuthenticator {
[GtkTemplate (ui = "/eu/polonkai/gergely/gauthenticator/gauth-window.ui")]
class Window : Gtk.ApplicationWindow {
[GtkChild]
private Gtk.ProgressBar countdown;
public Window(GAuthenticator.App app) {
Object(application: app);
}
}
}