package adminconsole // OperatorRow is one line in the operators (admin accounts) table. type OperatorRow struct { Username string CreatedAt string LastUsedAt string Disabled bool } // OperatorsData is the view model for the operators page. type OperatorsData struct { Items []OperatorRow }