19 lines
559 B
C#
19 lines
559 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PARR.DAL.Context;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PARR.DAL.Models.Unit
|
|
{
|
|
[Table("RegionalEkPtkGroups", Schema = DataContextSettings.Unit)]
|
|
[Comment("Таблица - региональные группы ПТК")]
|
|
public class UnitRegionalEkPtkGroup
|
|
{
|
|
[Key]
|
|
public Guid FieldValueId { get; set; }
|
|
|
|
[ForeignKey(nameof(FieldValueId))]
|
|
public UnitFieldValue? FieldValue { get; set; }
|
|
}
|
|
}
|