public override int GetHashCode()
        {
            var hash = 23;

            hash = hash * 31 + Id.GetHashCode();
            hash = hash * 31 + (int)Tags;
            hash = hash * 31 + Width;
            hash = hash * 31 + Height;
            return(hash);
        }