feat: implement roulette bonus notification command

This commit is contained in:
goat 2019-12-10 23:12:21 +09:00
parent 375807de1a
commit 130fbe8639
2 changed files with 46 additions and 12 deletions

View file

@ -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; }