mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-17 21:18:09 +08:00
15 lines
307 B
C#
15 lines
307 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace WinAlfred.Models
|
|||
|
{
|
|||
|
public class UserSetting
|
|||
|
{
|
|||
|
public string Theme { get; set; }
|
|||
|
public bool ReplaceWinR { get; set; }
|
|||
|
public List<WebSearch> WebSearches { get; set; }
|
|||
|
}
|
|||
|
}
|