28 lines
615 B
C#
28 lines
615 B
C#
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<Localization> {
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|