code_style: run dotnet format

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-14 21:15:40 +08:00
parent 28c93da73b
commit a824adf6d3
No known key found for this signature in database
6 changed files with 9 additions and 10 deletions

View file

@ -20,19 +20,19 @@ namespace SourceGit.Models
public class Filter : ObservableObject
{
public string Pattern
public string Pattern
{
get => _pattern;
set => SetProperty(ref _pattern, value);
}
public FilterType Type
public FilterType Type
{
get;
set;
} = FilterType.LocalBranch;
public FilterMode Mode
public FilterMode Mode
{
get => _mode;
set => SetProperty(ref _mode, value);