microting/eform-sdk-dotnet

View on GitHub
eFormCore/Infrastructure/Data/Entities/CheckListTranslation.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.ComponentModel.DataAnnotations.Schema;

namespace Microting.eForm.Infrastructure.Data.Entities
{
    public class CheckListTranslation : PnBase
    {
        [ForeignKey("CheckList")] public int CheckListId { get; set; }

        [ForeignKey("Language")] public int LanguageId { get; set; }

        public string Text { get; set; }

        public string Description { get; set; }

        public virtual CheckList CheckList { get; set; }
    }
}