21 lines
902 B
C#
21 lines
902 B
C#
using Microsoft.EntityFrameworkCore;
|
||
using PARR.DAL.Context;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
namespace PARR.DAL.Models.Schedule
|
||
{
|
||
/// <summary>
|
||
/// Расписание в ЕСПП. Смещение часового пояса относительно МСК для зоны ответственности рабочей группы
|
||
/// </summary>
|
||
[Table("ResponseAreaTimeOffsets", Schema = DataContextSettings.Schedule)]
|
||
[Comment("Расписание в ЕСПП. Смещение часового пояса относительно МСК для зоны ответственности рабочей группы")]
|
||
public class ScheduleResponseAreaTimeOffset
|
||
{
|
||
[Key]
|
||
public required string ResponseArea { get; set; }
|
||
|
||
public required string TimeOffset { get; set; }
|
||
}
|
||
}
|