Files
CouchLog/CouchLog/Data/DatabaseModels/Settings/AccountsSettings.cs

14 lines
271 B
C#

using System.ComponentModel.DataAnnotations;
namespace CouchLog.Data
{
public class AccountsSettings
{
[Key]
public int Id { get; set; }
public bool IsRegistrationAllowed { get; set; }
//More Options that can be added
}
}