mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
18 lines
466 B
C#
18 lines
466 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace BTCPayServer.Services
|
|||
|
{
|
|||
|
public class ThemeSettings
|
|||
|
{
|
|||
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|||
|
public string BootstrapCssUri { get; set; }
|
|||
|
|
|||
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|||
|
public string CreativeStartCssUri { get; set; }
|
|||
|
}
|
|||
|
}
|