Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BetterIServ/BetterIServ.Backend/Entities/Substitution.cs
2023-04-24 18:50:10 +02:00

14 lines
441 B
C#

namespace BetterIServ.Backend.Entities;
public struct Substitution {
public string[] Classes { get; set; }
public int[] Times { get; set; }
public string Type { get; set; }
public string Representative { get; set; }
public string Lesson { get; set; }
public string NewLesson { get; set; }
public string Room { get; set; }
public string Teacher { get; set; }
public string Description { get; set; }
}