mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
28 lines
359 B
C#
28 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ManageViewModels
|
|
{
|
|
public class PairingModel
|
|
{
|
|
public string Id
|
|
{
|
|
get; set;
|
|
}
|
|
public string Label
|
|
{
|
|
get; set;
|
|
}
|
|
public string Facade
|
|
{
|
|
get; set;
|
|
}
|
|
public string SIN
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|