timetable/TimeTable/model/Basic.cs

12 lines
204 B
C#
Raw Permalink Normal View History

2025-03-19 22:13:52 +00:00
namespace TimeTable.model {
internal class Basic {
string uid { get; set; }
2025-03-22 23:37:01 +00:00
string start { get; set; }
string end { get; set; }
string text { get; set; }
2025-03-19 22:13:52 +00:00
}
}