Remove setters where possible

This commit is contained in:
Ske
2020-06-13 13:11:08 +02:00
parent e8b69dfe29
commit cb8f29cc47
3 changed files with 8 additions and 15 deletions

View File

@@ -8,7 +8,7 @@ using NodaTime.Text;
namespace PluralKit.Core {
public class PKMember
{
public int Id { get; set; }
public int Id { get; }
public string Hid { get; set; }
public int System { get; set; }
public string Color { get; set; }
@@ -20,8 +20,8 @@ namespace PluralKit.Core {
public string Description { get; set; }
public ICollection<ProxyTag> ProxyTags { get; set; }
public bool KeepProxy { get; set; }
public Instant Created { get; set; }
public int MessageCount { get; set; }
public Instant Created { get; }
public int MessageCount { get; }
public PrivacyLevel MemberPrivacy { get; set; }