* User views its devices, from a /manage index link * Yavsc.Server resurection
16 lines
222 B
C#
16 lines
222 B
C#
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace Yavsc.Models.Auth {
|
||
public class Scope {
|
||
|
||
|
||
[Key]
|
||
|
||
public string Id { get; set; }
|
||
|
||
public string Description { get; set; }
|
||
|
||
}
|
||
}
|