Deleted dotnet-tools.json (dotnet-ef config) and IIS publish profiles for .NET 7 and .NET 9 (IISProfileNet7Win64.pubxml, IISProfileNet9Win64.pubxml) to clean up unused deployment and tooling files.
18 lines
395 B
C#
18 lines
395 B
C#
using System.Globalization;
|
|
|
|
namespace EnvelopeGenerator.GeneratorAPI.Models;
|
|
|
|
public class Culture
|
|
{
|
|
private string _language = string.Empty;
|
|
public string Language { get => _language;
|
|
init {
|
|
_language = value;
|
|
Info = new(value);
|
|
}
|
|
}
|
|
public string FIClass { get; init; } = string.Empty;
|
|
|
|
public CultureInfo? Info { get; init; }
|
|
}
|