1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4#[derive(Copy, Clone, Default, Debug, PartialEq)]
5pub struct DateModel {
6 pub year: i32,
7 pub month: u32,
8 pub day: u32,
9}
10