forked from Teknikode/Teknik
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
748 B
32 lines
748 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel.DataAnnotations; |
|
using System.ComponentModel.DataAnnotations.Schema; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Teknik.Areas.Profile.Models |
|
{ |
|
public class UploadSettings |
|
{ |
|
[Key] |
|
public int UserId { get; set; } |
|
|
|
public bool SaveKey { get; set; } |
|
|
|
public bool ServerSideEncrypt { get; set; } |
|
|
|
public virtual User User { get; set; } |
|
|
|
public virtual BlogSettings BlogSettings { get; set; } |
|
|
|
public virtual UserSettings UserSettings { get; set; } |
|
|
|
public UploadSettings() |
|
{ |
|
SaveKey = true; |
|
ServerSideEncrypt = true; |
|
} |
|
} |
|
}
|
|
|