32 lines
755 B
C#
32 lines
755 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 = "Vrsta")]
|
|
public string Type { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Vsebina")]
|
|
public string Content { get; set; }
|
|
|
|
// ForeingKey
|
|
public CodeTableCompany Company { get; set; }
|
|
}
|
|
}
|