CourseWork_School/School/SchoolContracts/ViewModels/CoursesForStudyViewModel.cs
2024-04-29 14:56:29 +04:00

20 lines
467 B
C#

using SchoolContracts.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class CoursesForStudyViewModel: ICoursesForStudy
{
public int Id { get; set; }
[DisplayName("Общее время")]
public decimal TotalTime { get; set; }
public int StudyId { get; set; }
public int CoursesId { get; set; }
}
}