-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix indentation in TableRegistrationRequest
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
16 changes: 8 additions & 8 deletions
16
src/Eurofurence.App.Domain.Model/ArtistsAlley/TableRegistrationRequest.cs
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,15 +1,15 @@ | ||
namespace Eurofurence.App.Domain.Model.ArtistsAlley | ||
{ | ||
public class TableRegistrationRequest | ||
{ | ||
public string DisplayName { get; set; } | ||
public class TableRegistrationRequest | ||
{ | ||
public string DisplayName { get; set; } | ||
|
||
public string WebsiteUrl { get; set; } | ||
public string WebsiteUrl { get; set; } | ||
|
||
public string ShortDescription { get; set; } | ||
public string ShortDescription { get; set; } | ||
|
||
public string Location { get; set; } | ||
public string Location { get; set; } | ||
|
||
public string TelegramHandle { get; set; } | ||
} | ||
public string TelegramHandle { get; set; } | ||
} | ||
} |