yavsc/Yavsc/Models/Auth/Scope.cs

16 lines
222 B
C#

8 years ago
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Auth {
public class Scope {
8 years ago
[Key]
public string Id { get; set; }
public string Description { get; set; }
}
}