19 lines
350 B
C#
19 lines
350 B
C#
using SchoolContracts.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.BindingModels
|
|
{
|
|
public class ItemForStudyBindingModel: IItemForStudyModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int ItemId { get; }
|
|
|
|
public int StudyId { get; }
|
|
}
|
|
}
|