yavsc/Yavsc/src/Model/Auth/Application.cs

12 lines
301 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
namespace Yavsc
{
public class Application
{
public string ApplicationID { get; set; }
public string DisplayName { get; set; }
public string RedirectUri { get; set; }
public string LogoutRedirectUri { get; set; }
public string Secret { get; set; }
}
}