mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
16 lines
373 B
C#
16 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; }
|
|
}
|
|
}
|