yavsc/Yavsc/Model/Auth/Application.cs

15 lines
365 B
C#

using System.ComponentModel.DataAnnotations;
namespace Yavsc
{
public class Application
{
[Key]
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; }
}
}