Skip to content
Snippets Groups Projects

Feature/communications

Merged Enzo Santangelo Dodera requested to merge feature/Communications into develop
4 files
+ 51
0
Compare changes
  • Side-by-side
  • Inline
Files
4
using System;
using System.Collections.Generic;
using System.Text;
namespace Tsi1.DataLayer.Entities
{
public class Communication
{
public int Id { get; set; }
public string Text { get; set; }
public DateTime ValidUntil { get; set; }
public Course Course { get; set; }
public Tenant Tenant { get; set; }
}
}
Loading