mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
22 lines
498 B
C#
22 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Rating
|
|
{
|
|
public class RateSourceInfo
|
|
{
|
|
public RateSourceInfo(string id, string displayName, string url)
|
|
{
|
|
Id = id;
|
|
DisplayName = displayName;
|
|
Url = url;
|
|
}
|
|
public string Id { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
}
|