12 lines
323 B
C#
12 lines
323 B
C#
using System.Globalization;
|
|
|
|
namespace CandyHouseContracts.Infrastructure.ClientConfigurations;
|
|
|
|
public class ClientConfiguration
|
|
{
|
|
public virtual string Type => nameof(ClientConfiguration);
|
|
|
|
public double BasicLevel { get; set; }
|
|
|
|
public string CultureName { get; set; } = CultureInfo.CurrentCulture.Name;
|
|
} |