|
namespace Knoks.Framework.Services
|
|
{
|
|
public class AccountTransactionsSettings : IAccountTransactionsSettings
|
|
{
|
|
public decimal NewUserFreeCreditAmount { get; set; }
|
|
}
|
|
|
|
public interface IAccountTransactionsSettings
|
|
{
|
|
decimal NewUserFreeCreditAmount { get; set; }
|
|
}
|
|
} |