Skip to content

Instantly share code, notes, and snippets.

@AndreasLazar
Last active June 15, 2018 12:48
Show Gist options
  • Save AndreasLazar/2220eba9c40154146bc94bf3700cd9c7 to your computer and use it in GitHub Desktop.
Save AndreasLazar/2220eba9c40154146bc94bf3700cd9c7 to your computer and use it in GitHub Desktop.
using System;
namespace MeineApp.Models
{
public class KnowledgeCircle
{
public int ID { get; set; }
public string Thema { get; set; }
public DateTime Datum { get; set; }
public int SpeakerId { get; set; }
public Speaker Speaker { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment