mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
9 lines
308 B
Dart
9 lines
308 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
part 'person.model.freezed.dart';
|
|
|
|
@freezed
|
|
abstract class Person with _$Person {
|
|
const factory Person({required String id, required String name, DateTime? updatedAt, DateTime? birthDate}) = _Person;
|
|
}
|