public class BenefitEntity
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Guid BenefitCategoryId { get; set; }
public virtual BenefitCategoryEntity CategoryEntity { get; set; }
}
public class BenefitCategoryEntity
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
public class TranslationEntity
{
public Guid EntityId { get; set; }
public string Language { get; set; }
public string Property { get; set; }
public string Value { get; set; }
}
public class BenefitEntity
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Guid BenefitCategoryId { get; set; }
public virtual BenefitCategoryEntity CategoryEntity { get; set; }
}
public class BenefitCategoryEntity
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
public class TranslationEntity
{
public Guid EntityId { get; set; }
public string Language { get; set; }
public string Property { get; set; }
public string Value { get; set; }
}