16 lines
360 B
C#
16 lines
360 B
C#
namespace WeatherForecast.Models {
|
|
public class LocalizationModel {
|
|
public string? TimeZone { get; set; }
|
|
|
|
public string? Locale { get; set; }
|
|
|
|
public string? DateFormat { get; set; }
|
|
|
|
public string? TimeFormat { get; set; }
|
|
|
|
public string? Currency { get; set; }
|
|
|
|
public string? CurrencySymbol { get; set; }
|
|
}
|
|
}
|