ilyalehchylin/educats-xamarin

View on GitHub
source/EduCATS/Networking/Models/SaveMarks/LabSchedule/ScheduleProtectLabsRecomend.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Newtonsoft.Json;

namespace EduCATS.Networking.Models.SaveMarks.LabShedule
{
    public class ScheduleProtectLabs
    {
        [JsonProperty("Mark")]
        public string Mark { get; set; }

        [JsonProperty("ScheduleProtectionId")]
        public int ScheduleProtectionId { get; set; }
    }
}