7748f15d76
Auth Claims for Job Creation types, user details.
14 lines
296 B
C#
14 lines
296 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Disco.Web.Models.Job
|
|
{
|
|
public class CreateRedirectModel
|
|
{
|
|
public string RedirectLink { get; set; }
|
|
public TimeSpan? RedirectDelay { get; set; }
|
|
}
|
|
} |