yavsc/Yavsc/Model/Auth/Application.cs

14 lines
365 B
C#
Raw Normal View History

2016-05-20 12:53:53 +02:00
using System.ComponentModel.DataAnnotations;
2016-05-17 18:22:18 +02:00
namespace Yavsc
{
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
}