yavsc/Yavsc/Model/Auth/Scope.cs

15 lines
222 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
2016-06-12 01:32:51 +02:00
using System.ComponentModel.DataAnnotations;
2016-05-17 18:22:18 +02:00
namespace Yavsc.Models.Auth {
public class Scope {
2016-06-12 01:32:51 +02:00
[Key]
2016-05-17 18:22:18 +02:00
public string Id { get; set; }
public string Description { get; set; }
}
}