Flow.Launcher/Flow.Launcher.Infrastructure/UserSettings/ShortCutModel.cs
2022-03-01 13:29:37 -06:00

12 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Flow.Launcher.Infrastructure.UserSettings
{
public record ShortCutModel(string Key, string Value)
{
}
}