mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 17:24:56 +00:00
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
8 lines
187 B
C#
8 lines
187 B
C#
namespace Daybreak.Shared.Models.Themes;
|
|
|
|
public sealed class StaticBackground(string backdropImage)
|
|
: IAppBackground
|
|
{
|
|
public string BackdropImage { get; } = backdropImage;
|
|
}
|