mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
19 lines
552 B
C#
19 lines
552 B
C#
using System;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
namespace BTCPayServer.Abstractions.Services
|
|
{
|
|
public class UIExtension : IUIExtension
|
|
{
|
|
[Obsolete("Use extension method BTCPayServer.Extensions.AddUIExtension(this IServiceCollection services, string location, string partialViewName) instead")]
|
|
public UIExtension(string partial, string location)
|
|
{
|
|
Partial = partial;
|
|
Location = location;
|
|
}
|
|
|
|
public string Partial { get; }
|
|
public string Location { get; }
|
|
}
|
|
}
|