3f63281dc4
Also UI style, theme and element changes
14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Config.JobQueue
|
|
{
|
|
public interface ConfigJobQueueCreateModel : BaseUIModel
|
|
{
|
|
Repository.JobQueue JobQueue { get; set; }
|
|
}
|
|
}
|