21 lines
428 B
C#
Raw Normal View History

2023-04-03 17:14:39 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModel
{
public class CircleBindingModel
{
public int Id { get; set; }
public DateTime StartDate { get; set; } = DateTime.Now;
public int ClientId { get; set; }
public int LessonId { get; set; }
public Dictionary<int, string> CircleLessons { get; set; }
}
}