Dynamic user profile per tenant

This commit is contained in:
Shaun Walker
2019-09-03 20:39:29 -04:00
parent da890f32d1
commit 1e4c07889b
25 changed files with 558 additions and 155 deletions

View File

@ -0,0 +1,24 @@
using System;
namespace Oqtane.Models
{
public class Profile : IAuditable
{
public int ProfileId { get; set; }
public int SiteId { get; set; }
public string Name { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Category { get; set; }
public int ViewOrder { get; set; }
public int MaxLength { get; set; }
public string DefaultValue { get; set; }
public bool IsRequired { get; set; }
public bool IsPrivate { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}
}