Основа для Contracts
This commit is contained in:
19
ClinicScheduleContracts/ViewModels/DepartmentViewModel.cs
Normal file
19
ClinicScheduleContracts/ViewModels/DepartmentViewModel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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 DepartmentViewModel : IDepartmentModel
|
||||
{
|
||||
public int id { get; set; }
|
||||
|
||||
[DisplayName("Название отделения")]
|
||||
public string name { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user