mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-23 16:55:19 +00:00
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
8 lines
174 B
C#
8 lines
174 B
C#
namespace Daybreak.Shared.Models.Themes;
|
|
|
|
public sealed class EmbedBackground(string embedCode)
|
|
: IAppBackground
|
|
{
|
|
public string EmbedCode { get; } = embedCode;
|
|
}
|