github.com/readium/readium-lcp-server@v0.0.0-20240101192032-6e95190e99f1/frontend/manage/app/user/user.ts (about)

     1  import { CrudItem }  from '../crud/crud-item';
     2  
     3  export class User implements CrudItem {
     4      id:             number;
     5      uuid:           string;
     6      name:           string;
     7      email:          string;
     8      password?:      string | undefined | null; // Hashed password
     9      clearPassword?: string | undefined | null;
    10      hint?:          string | undefined | null;
    11  }