Files
superport/lib/data/models/auth/auth_user.g.dart
JiWoong Sul c419f8f458 backup: 사용하지 않는 파일 삭제 전 복구 지점
- 전체 371개 파일 중 82개 미사용 파일 식별
- Phase 1: 33개 파일 삭제 예정 (100% 안전)
- Phase 2: 30개 파일 삭제 검토 예정
- Phase 3: 19개 파일 수동 검토 예정

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-02 19:51:40 +09:00

30 lines
955 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'auth_user.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$AuthUserImpl _$$AuthUserImplFromJson(Map<String, dynamic> json) =>
_$AuthUserImpl(
id: (json['id'] as num).toInt(),
username: json['username'] as String?,
email: json['email'] as String,
name: json['name'] as String,
role: json['role'] as String? ?? 'admin',
phone: json['phone'] as String?,
mobile: json['mobile'] as String?,
);
Map<String, dynamic> _$$AuthUserImplToJson(_$AuthUserImpl instance) =>
<String, dynamic>{
'id': instance.id,
'username': instance.username,
'email': instance.email,
'name': instance.name,
'role': instance.role,
'phone': instance.phone,
'mobile': instance.mobile,
};