You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dice_app/Sources/Model/Dice/FavGroupManager.cs

22 lines
450 B

using Model.Players;
using System.Collections.Generic;
using System.Linq;
namespace Model.Dice
{
public class FavGroupManager
{
private readonly List<FavGroup> favGroups = new();
private readonly DieManager dieManager;
public FavGroupManager(DieManager dieManager)
{
this.dieManager = dieManager;
}
public IEnumerable<FavGroup> GetAll() => favGroups.AsEnumerable();
}
}