15 lines
379 B
C#
15 lines
379 B
C#
|
10 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
10 years ago
|
|
||
|
|
namespace Yavsc
|
||
|
|
{
|
||
|
10 years ago
|
public class Application : IApplication
|
||
|
10 years ago
|
{
|
||
|
10 years ago
|
[Key]
|
||
|
10 years ago
|
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; }
|
||
|
10 years ago
|
}
|
||
|
10 years ago
|
}
|