9 lines
227 B
C#
9 lines
227 B
C#
namespace TightWiki.Models.ViewModels.Utility
|
|
{
|
|
public class NotifyViewModel : ViewModelBase
|
|
{
|
|
public string RedirectURL { get; set; } = string.Empty;
|
|
public int RedirectTimeout { get; set; }
|
|
}
|
|
}
|