Skip to content

Instantly share code, notes, and snippets.

@AndreasLazar
Last active June 15, 2018 14:33
Show Gist options
  • Save AndreasLazar/4bd33c2747d2cbb4edbf39e94b4ec4b7 to your computer and use it in GitHub Desktop.
Save AndreasLazar/4bd33c2747d2cbb4edbf39e94b4ec4b7 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace MeineApp.Models
{
public class Speaker
{
public int ID { get; set; }
public string Vorname { get; set; }
public string Nachname { get; set; }
public string KurzZeichen { get; set; }
public ICollection<KnowledgeCircle> KnowledgeCircles { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment