Rob / Entities /Config /Config.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
417 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entities.Config
{
public class Config
{
public ConnectionStrings ConnectionStrings { get; set; }
public Authentication Authentication { get; set; }
public JwtSettings Jwt { get; set; }
public PaymentSettings Payment { get; set; } = new();
}
}