Files

16 lines
379 B
C#
Raw Permalink Normal View History

2024-04-18 01:44:37 +02:00
using Wino.Core.Domain.Enums;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.Personalization;
public class ElementThemeContainer
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
public ElementThemeContainer(ApplicationElementTheme nativeTheme, string title)
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
NativeTheme = nativeTheme;
Title = title;
}
2025-02-16 11:54:23 +01:00
public ApplicationElementTheme NativeTheme { get; set; }
public string Title { get; set; }
2024-04-18 01:44:37 +02:00
}