mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
17 lines
373 B
C#
17 lines
373 B
C#
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
namespace BTCPayServer.Abstractions.Services
|
|
{
|
|
public class UIExtension : IUIExtension
|
|
{
|
|
public UIExtension(string partial, string location)
|
|
{
|
|
Partial = partial;
|
|
Location = location;
|
|
}
|
|
|
|
public string Partial { get; }
|
|
public string Location { get; }
|
|
}
|
|
}
|