Files
Wino-Mail/Wino.Core.Domain/Models/Personalization/ElementThemeContainer.cs

17 lines
421 B
C#
Raw Normal View History

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