This repository has been archived on 2025-03-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
brook/lib/models/decorations.dart
2025-01-03 18:33:59 -05:00

11 lines
330 B
Dart

import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:yaru/yaru.dart';
part "decorations.freezed.dart";
@freezed
class Decorations with _$Decorations {
const factory Decorations({
required List<YaruWindowControlType> leading,
required List<YaruWindowControlType> trailing,
}) = _Decorations;
}