14 lines
271 B
C#
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
|
|
}
|
|
}
|