22 lines
537 B
C#
22 lines
537 B
C#
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<ImageL10n> {
|
|
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;
|
|
}
|
|
}
|
|
}
|