Основа для Contracts

This commit is contained in:
2025-05-24 23:19:13 +04:00
parent 828d53fa50
commit 459e75b64a
23 changed files with 600 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using ClinicScheduleModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClinicScheduleContracts.ViewModels
{
public class ScheduleAssignmentViewModel : IScheduleAssignmentModel
{
public int id { get; set; }
[DisplayName("ID расписания")]
public int scheduleId { get; set; }
[DisplayName("ID смены")]
public int shiftId { get; set; }
[DisplayName("Пользователь")]
public IUserModel user { get; set; }
}
}