18 lines
457 B
C#
18 lines
457 B
C#
using ElectronicsShopDataModels.Enums;
|
||
using ElectronicsShopDataModels.Models;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace ElectronicsShopContracts.ViewModels
|
||
{
|
||
public class ImplementerViewModel : IImplementerModel
|
||
{
|
||
public int UserID {get; set;}
|
||
|
||
public Quakifications Qualification { get; set; } = Quakifications.Отсутствует;
|
||
}
|
||
}
|