Continous Integration in der Praxis Gruppenarbeit
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.

13 lines
361 B

2 years ago
  1. using MiniGames.Shared.Models;
  2. using System.Collections.Generic;
  3. namespace MiniGames.Client.ViewModel
  4. {
  5. public interface IUno
  6. {
  7. StapelModel ZiehKartenStapel { get; set; }
  8. void ZiehKartenStapelZusammenstellen();
  9. bool IstAblageStapelFarbeGleichZuLegendeKarte(string neueKarteFarbe);
  10. void ZiehEineKarte(int id);
  11. }
  12. }