group files by circle
This commit is contained in:
26
src/Yavsc.Server/Models/Access/CircleAuthorizationToFile.cs
Normal file
26
src/Yavsc.Server/Models/Access/CircleAuthorizationToFile.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Newtonsoft.Json;
|
||||
using Yavsc.Abstract.Identity.Security;
|
||||
using Yavsc.Models.Relationship;
|
||||
|
||||
namespace Yavsc.Server.Models.Access
|
||||
{
|
||||
public class CircleAuthorizationToFile : ICircleAuthorization
|
||||
{
|
||||
[Required]
|
||||
public long CircleId
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
[Required]
|
||||
public string FullPath
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
[ForeignKey("CircleId"), JsonIgnore]
|
||||
public virtual Circle Circle { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user