mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
11 lines
202 B
C#
11 lines
202 B
C#
|
|
namespace Bit.Core.SecretsManager.Models.Data;
|
|||
|
|
|
|||
|
|
public class ProjectCounts
|
|||
|
|
{
|
|||
|
|
public int Secrets { get; set; }
|
|||
|
|
|
|||
|
|
public int People { get; set; }
|
|||
|
|
|
|||
|
|
public int ServiceAccounts { get; set; }
|
|||
|
|
}
|