mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02: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; }
|
|||
|
|
}
|
|||
|
|
}
|