Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tsi1-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rodrigo Sastre Marotta
tsi1-backend
Merge requests
!25
Feature/communications
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/communications
feature/Communications
into
develop
Overview
0
Commits
5
Pipelines
0
Changes
4
Merged
Enzo Santangelo Dodera
requested to merge
feature/Communications
into
develop
4 years ago
Overview
0
Commits
5
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
22122b5d
Prev
Next
Show latest version
4 files
+
51
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
22122b5d
entity configuration
· 22122b5d
esantangelo
authored
4 years ago
Tsi1.Api/Tsi1.DataLayer/Entities/Communication.cs
0 → 100644
+
19
−
0
Options
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