a099d68915
Initial Release; Includes Database and MVC refactoring
14 lines
333 B
C#
14 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Config.AuthorizationRole
|
|
{
|
|
public interface ConfigAuthorizationRoleCreateModel : BaseUIModel
|
|
{
|
|
Models.Repository.AuthorizationRole AuthorizationRole { get; set; }
|
|
}
|
|
}
|