2024-04-29 14:56:29 +04:00

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; }
}
}