mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace LanMontainDesktop.Models;
|
|
|
|
public sealed class ImportedClassScheduleSnapshot
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
|
|
public string FilePath { get; set; } = string.Empty;
|
|
}
|