mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace Bit.Core.Entities;
|
|
|
|
/// <summary>
|
|
/// This class is not used. It is implemented to make the Identity provider happy.
|
|
/// </summary>
|
|
public class Role
|
|
{
|
|
public string Name { get; set; }
|
|
}
|