mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(directory): ♻ convert MaintainerViewModel to have private setters
This commit is contained in:
parent
bdc82486bf
commit
7c90836135
1 changed files with 6 additions and 6 deletions
|
|
@ -51,12 +51,12 @@ public MaintainerViewModelProfile()
|
|||
|
||||
public class MaintainerViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = null!;
|
||||
public Uri? Url { get; set; }
|
||||
public string? EmailAddress { get; set; }
|
||||
public string? TwitterHandle { get; set; }
|
||||
public IEnumerable<int>? FilterListIds { get; set; }
|
||||
public int Id { get; private set; }
|
||||
public string Name { get; private set; } = null!;
|
||||
public Uri? Url { get; private set; }
|
||||
public string? EmailAddress { get; private set; }
|
||||
public string? TwitterHandle { get; private set; }
|
||||
public IEnumerable<int>? FilterListIds { get; private set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue