Created
July 13, 2019 09:07
-
-
Save DmitrySikorsky/1029e6ced3f8591664dd4b6a133a257d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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