16 lines
346 B
C#
16 lines
346 B
C#
|
using SchoolScheduleDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SchoolScheduleContracts.BindingModels
|
|||
|
{
|
|||
|
public class SchedulePlaceBindingModel : ISchedulePlaceModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public TimeOnly Time { get; set; }
|
|||
|
}
|
|||
|
}
|