Hi all!
I have a class with collection of enums:
Class1.cs
public enum Language
{
Serbian = 1,
Croatian,
Ukrainian,
}
public class Class1
{
private IList<Language> m_languages = new List<Language>();
public virtual IList<Language> Languages
{
get { return m_languages; }
set { m_languages = value; }
}
}
What is the content of mapping file for this class?