42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
/*
|
|
Espe | Ein schlichtes Werkzeug zur Mitglieder-Verwaltung | Backend
|
|
Copyright (C) 2024 Christian Fraß
|
|
|
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
|
version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with this program. If not, see
|
|
<https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace _espe.type
|
|
{
|
|
|
|
/**
|
|
*/
|
|
export type member_id = int;
|
|
|
|
|
|
/**
|
|
*/
|
|
export type member_object = {
|
|
membership_number : (null | string);
|
|
name_real_value : string;
|
|
name_real_index : int;
|
|
email_address_private : (null | string);
|
|
registered : boolean;
|
|
enabled : boolean;
|
|
email_use_veiled_address : boolean;
|
|
email_use_nominal_address : boolean;
|
|
email_redirect_to_private_address : boolean;
|
|
email_allow_sending : boolean;
|
|
password_image : (null | string);
|
|
password_change_last_attempt : (null | int);
|
|
password_change_token : (null | string);
|
|
};
|
|
|
|
}
|