2016-05-20 12:53:53 +02:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
namespace Yavsc
|
|
|
|
|
{
|
2016-06-10 01:14:53 +02:00
|
|
|
public class Application
|
2016-05-17 18:22:18 +02:00
|
|
|
{
|
2016-05-20 12:53:53 +02:00
|
|
|
[Key]
|
2016-05-17 18:22:18 +02:00
|
|
|
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; }
|
2016-05-20 12:53:53 +02:00
|
|
|
}
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|