22 lines
416 B
C#
22 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using BS.Shared.Core;
|
|
|
|
namespace BS.Shared.Settings
|
|
{
|
|
public class ApplicationSettings : AbstractIDSpecificDefaultClass<ApplicationSettings>
|
|
{
|
|
public static int SupportConceptExpirationLimitInMonths { get; set; }
|
|
|
|
public virtual String RssFeedUrl
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|