1
0
mirror of https://github.com/XFox111/GUTSchedule.git synced 2026-04-22 06:58:01 +03:00

Added icons, repository and code cleanup

This commit is contained in:
Michael Gordeev
2019-12-23 12:21:46 +03:00
parent 66bf57c7d0
commit 32c97aa6cf
29 changed files with 347 additions and 250 deletions
@@ -0,0 +1,12 @@
namespace GUT.Schedule.Models
{
public class DataSet
{
public string Calendar { get; set; }
public string Faculty { get; set; }
public int Course { get; set; }
public string Group { get; set; }
public int? Reminder { get; set; }
public bool AddGroupToTitle { get; set; }
}
}