mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
287 B
C#
11 lines
287 B
C#
using System;
|
|
|
|
namespace LanMountainDesktop.Views.Components;
|
|
|
|
public sealed class OfficeRecentDocumentViewModel
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string FilePath { get; set; } = string.Empty;
|
|
public string TimeAgo { get; set; } = string.Empty;
|
|
}
|