-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync culture retrieval across branches.
- Loading branch information
Jan Lenoch
committed
Jul 29, 2019
1 parent
49fda54
commit 7ebd6f7
Showing
2 changed files
with
26 additions
and
14 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,9 +1,18 @@ | ||
namespace Business.Dto.Culture | ||
using System; | ||
|
||
namespace Business.Dto.Culture | ||
{ | ||
/// <summary> | ||
/// A lightweight representation of Kentico's <see cref="CMS.SiteProvider.CultureSiteInfo"/> objects. | ||
/// </summary> | ||
public class CultureDto : IDto | ||
{ | ||
public Guid CultureGuid { get; set; } | ||
|
||
public string CultureCode { get; set; } | ||
|
||
public string CultureName { get; set; } | ||
|
||
public string CultureShortName { get; set; } | ||
} | ||
} | ||
} |
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