From ea4c611b4655254fbdaca98f4482aa359533e260 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Mon, 28 Dec 2020 15:09:32 -0500 Subject: [PATCH] refactor(model): add weight column --- NoSoliciting.CursedWorkaround/Models.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NoSoliciting.CursedWorkaround/Models.cs b/NoSoliciting.CursedWorkaround/Models.cs index 8e2949d..63bdbbc 100644 --- a/NoSoliciting.CursedWorkaround/Models.cs +++ b/NoSoliciting.CursedWorkaround/Models.cs @@ -34,6 +34,8 @@ namespace NoSoliciting.CursedWorkaround { public string Message { get; } + public float Weight { get; } = 1; + public bool PartyFinder => this.Channel == 0; public bool Shout => this.Channel == 11 || this.Channel == 30;