mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
9 lines
212 B
C#
9 lines
212 B
C#
using System.Collections.Generic;
|
|
using Avalonia.Media;
|
|
|
|
namespace LanMontainDesktop.Models;
|
|
|
|
public sealed record MonetPalette(
|
|
IReadOnlyList<Color> RecommendedColors,
|
|
IReadOnlyList<Color> MonetColors);
|