using Core.Abstractions.DomainObjects; using Core.Enumerations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.DomainObjects.L10n { public class ImageL10n : DomainObjectBase { public Locales Locale { get; set; } public string Alt { get; set; } public override int GetHashCode() { int hash = 17; hash = hash * 23 + Locale.GetHashCode(); hash = hash * 23 + Alt.GetHashCode(); return hash; } } }