TranslateTool.PoEntry.PoEntry C# (CSharp) Method

PoEntry() public method

public PoEntry ( List locations, string nonLocalized, string localized ) : System
locations List
nonLocalized string
localized string
return System
        public PoEntry(List<PoLocation> locations, string nonLocalized, string localized)
        {
            this.Locations = locations;
            this.NonLocalized = nonLocalized;
            this.Localized = localized;
        }
PoEntry