reactredux/webapi/WeatherForecast/Models/LocalizationModel.cs

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; }
}
}