Files
LanMountainDesktop/LanMontainDesktop/Models/ImportedClassScheduleSnapshot.cs

11 lines
261 B
C#
Raw Normal View History

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;
}