19 lines
425 B
C#
19 lines
425 B
C#
using CaseAccountingDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.BindingModels
|
|
{
|
|
public class SpecializationBindingModel : ISpecializationModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public int UserId { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|