mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-15 07:43:20 +08:00
18 lines
409 B
C#
18 lines
409 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
|
|
namespace BetterGenshinImpact.Model;
|
|
|
|
public partial class KeyMouseScriptItem : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private string _name = string.Empty;
|
|
|
|
[ObservableProperty]
|
|
private string _createTimeStr = string.Empty;
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public string Path { get; set; } = string.Empty;
|
|
}
|