mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-08 00:24:12 +08:00
16 lines
351 B
C#
16 lines
351 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; }
|
|
}
|