Initial commit

This commit is contained in:
2022-07-06 21:35:05 +02:00
commit b2494052ff
97220 changed files with 2449256 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System.Globalization;
namespace Gos.Core.Entities
{
public class DiscourseChannel : BaseEntity, ILocalizableEntity<DiscourseChannelTranslation>
{
public string Title
{
get => Translations[CultureInfo.CurrentCulture].Title;
set => Translations[CultureInfo.CurrentCulture].Title = value;
}
public TranslationCollection<DiscourseChannelTranslation> Translations { get; set; } = new();
}
public enum DiscourseChannelKeys
{
Radio = 1,
Televizija = 2,
OsebniStik = 3,
Telefon = 4,
}
}