32 lines
831 B
C#
32 lines
831 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using EveryThing.Models.CodeTable;
|
|
|
|
namespace EveryThing.Models.CodeTable
|
|
{
|
|
public class CodeTablePrePostText
|
|
{
|
|
[Key]
|
|
public int IdPrePostText { get; set; }
|
|
|
|
[Required]
|
|
[ForeignKey("Company")]
|
|
public int IdCompanyFk { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Vsebina")]
|
|
public string Content { get; set; }
|
|
|
|
// ForeingKey
|
|
public CodeTableCompany Company { get; set; }
|
|
|
|
// Partner
|
|
[InverseProperty("CodeTablePrePostText")]
|
|
public virtual ICollection<CodeTablePrePostTextLink> CodeTablePrePostTextLinks { get; set; }
|
|
}
|
|
}
|