using Core.Abstractions.DomainObjects; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.DomainObjects { public class Localization : DomainObjectBase { 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; } public override int GetHashCode() { throw new NotImplementedException(); } } }