mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 02:08:32 +01:00
11 lines
231 B
C#
11 lines
231 B
C#
|
using BTCPayServer.Services;
|
||
|
|
||
|
namespace BTCPayServer.Components.LabelManager
|
||
|
{
|
||
|
public class LabelViewModel
|
||
|
{
|
||
|
public string[] SelectedLabels { get; set; }
|
||
|
public WalletObjectId ObjectId { get; set; }
|
||
|
}
|
||
|
}
|