btcpayserver/BTCPayServer.Abstractions/Services/UIExtension.cs

19 lines
552 B
C#
Raw Normal View History

2024-10-07 21:33:53 +09:00
using System;
using BTCPayServer.Abstractions.Contracts;
namespace BTCPayServer.Abstractions.Services
{
2021-12-31 16:59:02 +09:00
public class UIExtension : IUIExtension
{
2024-10-07 21:33:53 +09:00
[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; }
}
}