Skip to content

Instantly share code, notes, and snippets.

@DmitrySikorsky
Created July 13, 2019 09:07
Show Gist options
  • Save DmitrySikorsky/1029e6ced3f8591664dd4b6a133a257d to your computer and use it in GitHub Desktop.
Save DmitrySikorsky/1029e6ced3f8591664dd4b6a133a257d to your computer and use it in GitHub Desktop.
public class Localization
{
public int LocalizationSetId { get; set; }
public string CultureCode { get; set; }
public string Value { get; set; }
public virtual LocalizationSet LocalizationSet { get; set; }
public virtual Culture Culture { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment