mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
21 lines
498 B
C#
21 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; }
|
|
}
|
|
}
|