-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from Swetugg/show-speaker-links-on-speaker-pag…
…e-#29 add links on speaker page #29
- Loading branch information
Showing
3 changed files
with
71 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,45 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
|
||
namespace swetugg_public.DbModels; | ||
|
||
public partial class Speaker | ||
{ | ||
public int Id { get; set; } | ||
|
||
|
||
public int ConferenceId { get; set; } | ||
|
||
|
||
public string Name { get; set; } = null!; | ||
|
||
|
||
public string? Company { get; set; } | ||
|
||
|
||
public string Slug { get; set; } = null!; | ||
|
||
|
||
public string? Bio { get; set; } | ||
|
||
|
||
public string? Web { get; set; } | ||
|
||
|
||
public string? Twitter { get; set; } | ||
|
||
|
||
public string? GitHub { get; set; } | ||
|
||
|
||
public string? LinkedIn { get; set; } | ||
|
||
public bool Published { get; set; } | ||
|
||
|
||
public int Priority { get; set; } | ||
|
||
|
||
public Guid? SessionizeId { get; set; } | ||
|
||
|
||
public string FirstName { get; set; } = null!; | ||
|
||
|
||
public string? SessionizeImageUrl { get; set; } | ||
|
||
|
||
public virtual Conference Conference { get; set; } = null!; | ||
|
||
|
||
public virtual ICollection<SpeakerImage> SpeakerImages { get; } = new List<SpeakerImage>(); | ||
|
||
|
||
public virtual ICollection<Session> Sessions { get; } = new List<Session>(); | ||
|
||
|
||
public virtual ICollection<Tag> Tags { get; } = new List<Tag>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters