website/Website/Data/States/Git/RepositoryPermissionsState.cs

7 lines
No EOL
186 B
C#

namespace Website.Data.States.Git {
public class RepositoryPermissionsState {
public bool admin { get; set; }
public bool push { get; set; }
public bool pull { get; set; }
}
}