mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 11:59:21 +01:00
feat: implement roulette bonus notification command
This commit is contained in:
parent
375807de1a
commit
130fbe8639
2 changed files with 46 additions and 12 deletions
|
|
@ -18,14 +18,16 @@ namespace Dalamud
|
|||
|
||||
public List<string> BadWords { get; set; }
|
||||
|
||||
public List<Tuple<int, int>> PreferredRoleReminders { get; set; }
|
||||
|
||||
public class FateInfo {
|
||||
public string Name { get; set; }
|
||||
public int Id { get; set; }
|
||||
public enum PreferredRole
|
||||
{
|
||||
None,
|
||||
All,
|
||||
Tank,
|
||||
Dps,
|
||||
Healer
|
||||
}
|
||||
|
||||
public List<FateInfo> Fates;
|
||||
public Dictionary<int, PreferredRole> PreferredRoleReminders { get; set; }
|
||||
|
||||
public string LastVersion { get; set; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue